1
我正在創建一個Unity程序,我想使用GUI按鈕來更改精靈的顏色。我在腳本中有以下代碼,但我不知道如何更改顏色。使用GUI按鈕統一更改精靈顏色
public GameObject WantedSprite;
private void DrawWindow(int windowID)
{
if (GUI.Button(new Rect(50, 150, 100, 50), "Change the Ball's color"))
{
var component = WantedSprite.GetComponent<Color>();
component.g = Random.Range(0, 255);
component.r = Random.Range(0, 255);
component.b = Random.Range(0, 255);
}
我在學Unity,所以這是我的背景的一點點,謝謝!