When i'm using SpriteBatch.Draw() method i can get vertical or horizontal scaling, for example: new Vector2(1.0f, 2.0f), it mean that my sprite will expand the Y-axe, How can i get diagonally expand (for example 45 or 70 degrees) ?
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.
|
|
First scale it horizontally and then vertically. If it is 45 degrees, you will scale the same in both directions, if its another angle, you can compute the scales using simple sin/cos functions. EDIT: C# example:
Beware of bugs in that example, I haven't tested it. Wouldn't it also be easier for you to just stretch the sprite using the Vector2 directly?
|
|||||||||||
|
