Search Results

1
vote

Farseer Physics Tutorials, Help files

Andy Beaulieu has beein doing a lot of work to make Farseer easier to use in Silverlight, you can read about it here: …
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

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

How do you access an attached property of a Silverlight object in C#?

something like this... double left=50; c1.SetValue(Canvas.LeftProperty, left); …
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

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

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

Converting Int to Color in C# for Silverlight’s WriteableBitmap

What hasn't been covered is that WriteableBitmap uses premultiplied ARGB32 so if you have a semitransparent pixel the R, G, and B values are scaled from 0 to the Alpha val …
0
votes

Silverlight 3 Navigation

You only have one mapping, so you'll only get one page. The default mapper when you create a navigation project looks like this: <navigation:Frame.UriMapper> <uriMapper …
1
vote

Silverlight C# Game or Graphics Engine?

If you're targeting both XNA and Silverlight for 2D games you can use the SilverSprite library at http://silversprite.codeplex.com and …
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 …
1
vote

System.Windows.Vector in silverlight

I use Vector2 and Vector3 from the MonoXNA project: http://monoxna.googlecode.com/svn/trunk/src …
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 …