I'm trying to flip/mirror an image as I paint it on an HTML canvas; I found a game tutorial showing a sprite sheet per direction a character has to face, but this doesn't seem quite right to me :( Especially since each frame has a different size.
In some game engines (like cocos2D), I remember using methods like "flipX" which would simply draw the "player" looking in the opposite direction (it's my target, trying to make some basic platformer).
What would be the best technique for you to reach this goal?
I tried to call the setScale(-1,1); on my canvas with no success. Maybe that isn't meant for this.
Thanks :)