我有一个包含半透明白色图像的 Texture2D ......我想知道如何以编程方式将其更改为半透明绿色。
任何帮助将非常感激。j3d
当你绘制它时,你可以指定一种颜色:
batch.Draw(texture, Vector2.Zero, Color.Green);
这是关于什么的:
batch.Draw(texture, myVector, Color.Green * 0.5f); //The float indicates the transparency of the green color