我正在开发一款具有spritesheets的游戏,如下:
我知道你做spriteBatch.Draw(...)
时可以绘制图像的某个部分,但是对于我正在做的事情,我需要每帧有一个单独的Texture2D
个对象。
我已经完成了谷歌搜索,但我能找到的只是过时的代码:/
更新 MJP here发布的代码几乎是我所需要的...但是,XNA 4.0中没有RenderTarget2D.GetTexture()
函数。
答案 0 :(得分:5)
哇好吧...谷歌搜索发现了更多:
Texture2D tex = (Texture2D)renderTarget;
只是一个简单的演员:)
这是我的最终代码:
public static Texture2D Crop(Texture2D image, Rectangle source)
{
var graphics = image.GraphicsDevice;
var ret = new RenderTarget2D(graphics, source.Width, source.Height);
var sb = new SpriteBatch(graphics);
graphics.SetRenderTarget(ret); // draw to image
graphics.Clear(new Color(0, 0, 0, 0));
sb.Begin();
sb.Draw(image, Vector2.Zero, source, Color.White);
sb.End();
graphics.SetRenderTarget(null); // set back to main window
return (Texture2D)ret;
}