我想在单击按钮时更改面板颜色,我尝试使用代码更改按钮颜色而不是面板颜色
public Image panel;
// Use this for initialization
void Start () {
panel = GetComponent<Image>();
}
// Update is called once per frame
public void OnButtonClick {
panel.color = GetRandomColor();
}
Color GetRandomColor(){
return new Color(Random.value, Random.value, Random.value);
}
}
我需要做什么?
喵喔喔
慕尼黑8549860
相关分类