Morning all (if its morning where you are)
I have been looking around and have not seen a satisfactory method for doing this so thought I would ask around...
Ideal world I would like to be able to generate a transparent Texture2D object. Drawing this to the screen I would like to be able to "paint" to it, i.e. when the left mouse button is down whatever pixel the cursor is over should be set to black. Following this I would then need to be able to use this texture.
Using the texture is the easy part, we can simply make a new Texture2D attribute for a "painting" object and use that in the SpriteBatch.Draw method. The two tricky parts are
- Generating a texture2D object of a specified size, filled with transparency in code.
- Editing that texture2D on the fly (i.e. being able to alter pixel colours)
If anyone has any experience of these you input would be very much appreciated.
You can either use a
RenderTarget2D
(MSDN), which is itself aTexture2D
(so you can use it inSpriteBatch.Draw
). This allows you to render onto a texture in the same way you render onto the screen. You need to useGraphicsDevice.SetRenderTarget
(MSDN) to set this up.Or you can use
Texture2D.SetData
(MSDN) to manipulate pixels directly. You can construct a transparentTexture2D
directly (MSDN). Don't forget toDispose
of any textures or other resources you create yourself!