设为首页 加入收藏

TOP

unity一个按钮实现开和关
2019-09-17 18:02:14 】 浏览:16
Tags: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);
            }
        }
    }
}

 

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇asp.net core系列 27 EF模型配置(.. 下一篇K8S+GitLab-自动化分布式部署ASP...

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目