Page 1 of 1

levels????????

PostPosted: Thu Jul 07, 2011 4:24 am
by master0500
anyone now how to make levels move to the next when you finish a level :? :? :?: :? :?

Re: levels????????

PostPosted: Thu Jul 07, 2011 5:46 am
by skydereign
It depends on how you want to make the levels, and how you make the levels depends on your game... but the easiest method would be to move the player actor and the view actor to wherever you put the second level, so something like this.
player -> Collision with warp -> Script Editor
Code: Select all
x=1000;
y=0;
view.x=1000-view.width/2;
view.y=-view.height/2;


This assumes the player should start the next level at position (1000, 0) in the editor.

Re: levels????????

PostPosted: Fri Jul 08, 2011 12:45 pm
by foleyjo
or if you want to use multi -load levels use the loadgame command and enter the filename of the next level.

You will also need to make sure you save and load any variables that are passed over to the next level such as Score and Lives