Page 1 of 1

Questions

PostPosted: Mon Jun 26, 2006 6:45 pm
by revned22006
:x I am making a platform game and i am having trouble with the tiles. when i put a collision on them from player. my guy jumps on it and then slowly goes through it and falls. how can i stop making them do that?
:x And how do i create the second level?

PostPosted: Mon Jun 26, 2006 7:54 pm
by The achievement
1) if you want him to stop on the platform, do this. player collision any side of platform. > physical response set everything to 0. thats what i do anyway. then click immediate action.

2) levels Make a flag actor of some sort. draw a flag in paint or paint shop. then make a filled region. then put the filled region wherever you want. then do. player> collision any side of flag> Script editor> type this code

x=Filled_region.x;
y=Filled_region.y;
view.x=Filled_region.x-200;
view.y==Filled_region.y-100; and you move to the filled region for level 2! hope this helps you!

PostPosted: Mon Jun 26, 2006 8:20 pm
by revned22006
:lol: that helped a lot but my view that follows the character doesn't go where it changes the level. How do i make the view go to where my character goes. i tired the parent but the view goes a lot faster then the character. :lol:

PostPosted: Tue Jun 27, 2006 12:29 am
by The achievement
lol same prob happend to me. put the player actor parent of the view! hope that helps.