Toggle

﹥>﹥吖頭↗ 提交于 2020-03-09 20:00:37
public class demo : MonoBehaviour {
    public Texture texture;
    private bool textBool = false;toggle
    private bool textureBool = true;
    private void OnGUI()
    {
        if (!texture)
        {
            //判断图片是否参加
            Debug.LogWarning("请添加一张图片");
            return;
        }
        textBool=GUI.Toggle(new Rect(Screen.width / 8.5f, 
            Screen.height / 7, Screen.height / 5, Screen.height / 5),textBool,"开关控件");
         textureBool=GUI.Toggle(new Rect(Screen.width / 4, 
            Screen.height / 7, Screen.height / 5, Screen.height / 5),textureBool,texture);
    }
}

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!