Search Results

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 …
3
votes

Is it possible to create and then upload an Image file to a web server from silverlight?

You can't render a canvas to a bitmap in Silverlight 2, but if you could generate a XAML version of your Canvas, you could pass it to the server and do something like this server side: …
1
vote

Silverlight 2 development using just Visual Studio?

I've heard rumours that since there is no Expression Blend Express or Expression Blend Light that there will at least for a while always be a version of Blend in a "Preview" state and the next one …
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 …
1
vote

Controlling rendering order (ZOrder) in Silverlight without using the Canvas control

You should be able to use Canvas.ZIndex in a Grid, it's actually misnamed and should be Panel.ZIndex but it should work. …