找传奇、传世资源到传世资源站!

源码:别踩白块小游戏Demo

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

这是一款简单的模仿别踩白块的小游戏源码:别踩白块小游戏Demo C#语言基础-第1张
 Button StartGame;
    GameObject StartMenu;
    Text text;
    bool TimeOpen = false;
    float time = 15f;

    void Awake()
    {
        StartGame = GameObject.Find("StartBnt").GetComponent<Button>();
        StartMenu = GameObject.Find("StartGame");
        text = GameObject.Find("TextTime").GetComponent<Text>();
    }
// Use this for initialization
void Start () {
        StartGame.onClick.AddListener(StartUI);//button监听UI
}

// Update is called once per frame
void Update () {
        CountDown();
}
    void StartUI()
    {
        StartMenu.SetActive(false);//不激活主界面开始场景
        TimeOpen = true;
    }
    public void FinishGamre()
    {

    }
   public  void CountDown()
    {

        if (TimeOpen)
        {
            time -= Time.deltaTime;
            text.text = time.ToString();
        }

        
        
    }

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复