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
If anyone has any experience of these you input would be very much appreciated.
You can either use a RenderTarget2D
(MSDN), which is itself a Texture2D
(so you can use it in SpriteBatch.Draw
). This allows you to render onto a texture in the same way you render onto the screen. You need to use GraphicsDevice.SetRenderTarget
(MSDN) to set this up.
Or you can use Texture2D.SetData
(MSDN) to manipulate pixels directly. You can construct a transparent Texture2D
directly (MSDN). Don't forget to Dispose
of any textures or other resources you create yourself!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With