3
votes
Sprite / Character animation in Silverlight (v2)
You can use the Clip property on the image itself or on a container for the image to display a specific piece of a larger image, like a sprite sheet. This may or may not be more performant than swa …
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 …
4
votes
Is Silverlight 2.0 a viable game development platform?
Since Silverlight 2 is lacking 3D support or distort transforms or bitmap manipulation, you're pretty much limited to 2D sprite games, but you could make a good casual game, or even a physics-based …
2
votes
Best design pattern for complex silverlight games
Actually the blog Shawn mentioned should be http://www.bluerosegames.com/silverlight-games-101/
I've been fi …
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 …
