Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 :)

share|improve this question

1 Answer

up vote 4 down vote accepted
  1. You can do this by transforming the context with myContext.scale(-1,1) before drawing your image, however

  2. This is going to slow down your game. It's a better idea to have a separate, reversed sprite.

share|improve this answer
Ok, I was just worried about the memory usage, but cpu availability might be even more sparse on mobile devices. I'll go the way you suggested. Thanks for this advice! – Jem Nov 17 '11 at 14:00
Well, don't just take my word for it. Profile it and be sure I'm not wrong about your particular usage. :) – Phrogz Nov 17 '11 at 14:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.