Search Results

1
vote

Designing Game Objects

I went down this path when first creating games in XNA, but next time I would do more of a model/view type of approach. The Model objects would be what you deal with in your Update loop, and your V …
0
votes

c# (more specifically xna) how can i request a xml file via http? Doesnt need to support xbox.

You can call any .NET framework classes you like on Windows, including ones that do network access and XML handling. On Xbox you are limited to what XNA provides to you which is a subset of the .NE …
0
votes

Need an XNA framework equivalent, that WORKS with system.windows.forms (it doesn’t have to work with XBox 360)

If you're just using SpriteBatch, it probably wouldn't be that hard to create a compatible API in Windows Forms, but if you want to do 3D or shaders it would be a lot tougher. …
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

When to use multiple sprite batches in XNA?

It also may be easier in cases with DrawableGameComponents to have a SpriteBatch per DrawableGameComponent instead of trying to pass this around. …
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 …