Page 1 of 1

Jumper

PostPosted: Fri Jul 30, 2010 2:45 am
by Setokyo
Hello to all
this is my 1st game
all it is that you must run
that's it
you run and when you pick up the blue balls mark S you go faster
get the green balls and you go slower
the aim of the game is to make the big jump
and try to blanlce how much blue and green balls you take
and any ideas is open
but plz don't flame me as i am new :twisted:

you only use Spacebar 2 jump

Re: Jumper

PostPosted: Fri Jul 30, 2010 3:24 am
by Toasterman
pretty good :)
maybe a longer track / multiple tracks / different themed tracks etc?
also, maybe the view shouldn't follow the y axis of the charector to make it easier to see?

Re: Jumper

PostPosted: Fri Jul 30, 2010 3:59 am
by Hblade
Coooooooooool :D

Re: Jumper

PostPosted: Fri Jul 30, 2010 4:09 am
by krenisis
Ok great work now if you want to make it great just make it much longer and it will be fine....also an enemy here or there.

Re: Jumper

PostPosted: Fri Jul 30, 2010 4:18 am
by Setokyo
also, maybe the view shouldn't follow the y axis of the charector to make it easier to see?

How can i do this?

Re: Jumper

PostPosted: Fri Jul 30, 2010 5:01 am
by Toasterman
well I am a begginer myself but I'm assuming the charector is moving forward using a draw actor (x=x+5) or it has an xvelocity of 5 (whatever speed your using)
you should be able to add the same xvelocity to the view instead of using the parent / child deal (which I'm guessing you are using)
that way the view follows the charector's x, but not it's y

nice job :D

I'm a novice too- there is probably a better way to somthing like this :)

Re: Jumper

PostPosted: Fri Jul 30, 2010 5:22 am
by krenisis
Ok click on view
click on draw actor
click on script editor

out this code your player actor is the guy your controlling if he has different name replace his name

view.x=player.x;

click ok,,,this is my method

Re: Jumper

PostPosted: Fri Jul 30, 2010 3:00 pm
by Bee-Ant
krenisis wrote:Ok click on view
click on draw actor
click on script editor

out this code your player actor is the guy your controlling if he has different name replace his name

view.x=player.x;

click ok,,,this is my method

Since you type the code inside the view, you don't need to declare the "view"...
So, the correct code would be :
Code: Select all
x=player.x-320; //320 is the view's half width

Or you can use this code to automatically detect the view's half width
Code: Select all
x=player.x-(width/2);

Re: Jumper

PostPosted: Sun Aug 01, 2010 12:09 pm
by savvy
nice game, needs to be longer and have enemys, weapons, boost and clouds.
hazards(spikes) ground variasions such as different tiles. different routs.
simple stuff like that.

Re: Jumper

PostPosted: Sun Aug 01, 2010 4:38 pm
by RippeR7420
This is a rad idea!

Keep up the good work :)

Re: Jumper

PostPosted: Sun Aug 01, 2010 7:45 pm
by Setokyo
Thank you all :D :twisted: