I am trying to make a doodle jump game and does anyone know how to make it so it only scrolls when I jump.
Here is a link to the test project http://scratch.mit.edu/projects/schusteralex2/2259101
Offline
I'm not sure if this works but you could do this
When Green Flag clicked
forever start
if touching green (the jumping pads)
if y > 0
change scroll y by (how much you want it to go up)
else
change y by (how much you want it to go up)
forever end
Offline
MaxFlyboy wrote:
I'm not sure if this works but you could do this
When Green Flag clicked
forever start
if touching green (the jumping pads)
if y > 0
change scroll y by (how much you want it to go up)
else
change y by (how much you want it to go up)
forever end
That is almost perfect, but I suggest instead of having it say "if touching green", have it say "if vertical > 0", meaning whenever you are moving up.
Last edited by Kileymeister (2012-01-07 14:23:16)
Offline
If you look at example projects, games, then Scrolling demo, you can use that, but instead of using x do y!
Offline