VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • C#教程之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);
            }
        }
    }
}
复制代码

相关教程