I want to flip my character to move left so that I dont have to animate a new left animation on every character (Yeah Im lazy). Is there an easy way to do this?
-Using kaboom.js
onKeyDown("a", () => {
player.move(-SPEED, 0), //moves sprite
onKeyPress("a", () => {
player.play("RunSide"), //plays animation
player.scale = -1, //trying to flip it here :)
onKeyRelease("a", () => {
player.stop(), //stops animation
player.frame = 0
})
})
})
player.flipX(true) should work assuming that player is the sprite that you created