Page 1 of 1

Going to Level 2

PostPosted: Wed Mar 01, 2006 11:10 pm
by The achievement
Ok if i put a flag at the end of the level 1 right, and i want the main actor to hit the flag and teleport to level 2 would i do MAIN ACTOR-> Collision->script editor-> (view.x = player.x; view.y = player.y;:

PostPosted: Thu Mar 02, 2006 9:52 am
by Novice
If your player is teleported somwhere, yes. But if not it will just move the view to the players current position. If the later is the case use something like
Code: Select all
view.x=800;//use your coordinates
view.y=600;
player.x=1200;
player.y=900;
This should move the player as well as the view.