unity一个按钮实现开和关


using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class ButtonCll : MonoBehaviour {
    private int countint = 0;
    public GameObject Seting;
    private bool count = true;
    // Use this for initialization
    void Start () {
        
    }
    
    // Update is called once per frame
    void Update () {
        // *******************************************第一种方法******************************************
        //每次点击来判断它的奇偶性
        if (Input .GetKeyUp (KeyCode.KeypadEnter))
        {
         
            countint++;
            if (countint %2==0)
            {
                Seting.SetActive(false);
            }
            else
            {
                Seting.SetActive(true);
            }       
        }
        // *******************************************第二种方法******************************************
        if (Input .GetKeyDown (KeyCode .KeypadEnter ))
        {
            count = !count;
            if (count)
            {
                Seting.SetActive(false);
            }
            else
            {
                Seting.SetActive(true);
            }
        }
    }
}

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM