A way to make a sprite bounce? – CS Discoveries – Code.org Professional Learning Community https://forum.code.org/t/a-way-to-make-a-sprite-bounce/25808
Anybody have any idea if there is a way you could make a sprite look like it was bouncing. A student was creating a scene with a bunny and she wanted it to bounce. We tried to play around with x and y but nothing could q…
sprite.isTouching(ground)) { ground.displace(sprite); sprite.velocityY = -10; } else