XNA draw / paint onto a Texture2D at runtime

。_饼干妹妹 提交于 2020-01-12 07:17:29

问题


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

  1. Generating a texture2D object of a specified size, filled with transparency in code.
  2. 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.


回答1:


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!



来源:https://stackoverflow.com/questions/6758690/xna-draw-paint-onto-a-texture2d-at-runtime

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!