Page 1 of 1

Making the view follow actor 3 - built in tutorial problem

PostPosted: Tue Aug 06, 2013 4:13 pm
by unknown24
I want to make view follow actor 3 like built in tutorial, but in the middle tutorial the mouse show wrong click, i can't get the script of collision with player after create stop_right & stop_left actor, what is this script?

Re: Making the view follow actor 3 - built in tutorial probl

PostPosted: Tue Aug 06, 2013 5:57 pm
by skydereign
The method that tutorial uses is just to move the view the same speed the player moves.
player -> Collision stop_right -> Script Editor
Code: Select all
view.x = view.x + 5;

Same code goes in the collision with stop_left, but change the plus to a minus. If you want to see the final versions of any tutorial you can load the ged files in game-editor-directory/Tutorials.

Re: Making the view follow actor 3 - built in tutorial probl

PostPosted: Fri Aug 09, 2013 12:00 am
by unknown24
thanks, skyderereign you help me again,,