-
-
Notifications
You must be signed in to change notification settings - Fork 298
Inspector.Xna module
Robert B Colton edited this page Aug 12, 2016
·
1 revision
Adds editors for XNA types (Vector3
, Color
, etc.) to the Inspector module.
Provides a number of utilities and controls for working with MonoGame content in WPF.
-
GraphicsDeviceService
service that implements MonoGame'sIGraphicsDeviceService
-
DrawingSurface
control that usesD3DImage
as described here.
public class MyDrawingSurface : DrawingSurface
{
protected override RaiseDraw(DrawEventArgs args)
{
args.GraphicsDevice.Clear(Color.LightGreen);
base.RaiseDraw(args);
}
}