In a video by Mick(how to make a game steps 1 and 2) it said to change direction to 0 when you press up key and I did it so the character turned sideways
Offline
sportsdude6 wrote:
In a video by Mick(how to make a game steps 1 and 2) it said to change direction to 0 when you press up key and I did it so the character turned sideways
That doesn't work on platformers. the simplest way is:
If key up arrow pressed
repeat 10
change y by 10
end
repeat until touching ground color
change y by -10
end
Offline
DigiTechs wrote:
imagine, you need a wait block in there, otherwise it wuold do it emidiatley, so updown really quickly, which is not what you want. You want smoother movement.
You don't need wait. I did that all the time before I learned velocity.
Offline