我有一个包含半透明白色图像的Texture2D ......我想知道如何以编程方式将其更改为半透明绿色。
任何帮助都会非常感激。 J3D
答案 0 :(得分:1)
当你draw时,你可以指定一种颜色:
batch.Draw(texture, Vector2.Zero, Color.Green);
答案 1 :(得分:0)
关键词:
batch.Draw(texture, myVector, Color.Green * 0.5f); //The float indicates the transparency of the green color