我正在尝试使GUI.DrawTexture可单击,但错误显示为“Assets/Script/guisettingonmenu.js(46,13):UCE0001:';'预期的。在末尾插入分号。”
有人可以帮帮我吗?

//make it clickable
Rect onButton = new Rect(640, 250, 80, 40);
GUI.DrawTexture(onButton, onNormal);
if(Input.GetMouseButton(0)){
    if (onButton.Contains(Event.current.mousePosition)){
        GUI.DrawTexture(onButton, onHover);
    }
}

最佳答案

是在js中使用C#语法的yup

var onButton : Rect = new Rect(640, 250, 80, 40);

09-08 02:45