07/08/31 10:50:56 67oi8D7d
>>503
Rectangle srcRect = new Rectangle(お好きなように);
byte[] data = new byte[srcRect.Width * srcRect.Height * 4];
texture.GetData(0, srcRect, data, 0, data.Length);
Texture2D texture2 = new Texture2D(graphics.GraphicsDevice, srcRect.Width, srcRect.Height, 0, ResourceUsage.None, SurfaceFormat.Color);
texture2.SetData(data);
>>502はこんな感じかなあ