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
JavaScript
x
12
12
1
onKeyDown("a", () => {
2
player.move(-SPEED, 0), //moves sprite
3
onKeyPress("a", () => {
4
player.play("RunSide"), //plays animation
5
player.scale = -1, //trying to flip it here :)
6
onKeyRelease("a", () => {
7
player.stop(), //stops animation
8
player.frame = 0
9
})
10
})
11
})
12
Advertisement
Answer
player.flipX(true) should work assuming that player is the sprite that you created