2
votes
XNA 2D Game Engines
FlatRedBall is a good option and is being actively supported. http://www.flatredball.com/frb/
…
1
vote
XNA: Applying SpriteBatch.Draw(…) color only to non-transparent pixels
I've never seen this happen, and I've been working with transparent PNGs like this since the beginning in XNA. Are you mixing 2D and 3D? If so, your 3D render setting may be confusing SpriteBatch, …
0
votes
How do I find rotation transformed 2D coordinates in XNA?
You can also use the Matrix helper methods to create a Z rotation matrix then multiply your vector by this to rotate it. Something like this:
Vector v1;
Matrix rot = Matrix.CreateRo …
0
votes
Animations in a 2D C# XNA game
One thing that can help when compositing sprites (giving a hero a sword, etc) using SpriteBatch is the Origin argument on some of the Draw method overloads. It allows you to rotate around something …
