Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Do anybody know how to apply transformation to sprite without opportunities of SpriteBatch.Draw() method ?

share|improve this question
Your question doesn't make sense. Could you try rephrasing it? What are you trying to achieve? – Andrew Russell Nov 8 '10 at 12:59
I need: at first rotate sprite and then scale it. Method SpriteBatch.Draw() at first scales sprite and then rotates it. – gevgeny Nov 8 '10 at 13:23

3 Answers

The matrix passed into SpriteBatch.Begin is applied last. Using this is the only way to achieve a scale operation following a rotate operation through SpriteBatch (assuming your scale is non-uniform).

The downside is that, if the scale of each sprite is different, you will have to start a new batch for each.

Your other option is to write your own sprite batcher - but that seems a bit drastic.

share|improve this answer

Thanks! I've found solution, but it is very slowly =(

this.displayMatrix = 
                Matrix.CreateTranslation(-(new Vector3(Position, 0))) * 
                Matrix.CreateRotationZ(1) *
                Matrix.CreateScale(new Vector3(new Vector2(1f, 2f), 1)) *
                Matrix.CreateTranslation((new Vector3(Position, 0)));
share|improve this answer

Could you suggest another solution?

That's what i need: I have circle sprite and this picture contains shadow, I need to stretch this circle (make ellipse) and rotate it, but I want the shadow does not change its position into ellise. rotation and scaling change every frame.

thanks in advise.....

share|improve this answer
Use multiple sprites? One for your ellipse, one for your shadow. – Andrew Russell Nov 8 '10 at 14:40
But I already have suitable sprite with shadows and glare. I think it's possible with matrix transformation. – gevgeny Nov 8 '10 at 14:56

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.