[Unity3D]如何实现点击按钮退出游戏
乔家的儿女小说结局是什么
[Unity3D]如何实现点击按钮退出游戏 1using System;黑上
2using System.Collections;
3using System.Collections.Generic;
4using UnityEngine;交行信用卡积分兑换
国庆祝福语简短关于白露节气的诗5using UnityEngine.UI;
6
7public class ExitGame : MonoBehaviour
8 {
9private void  Start() {
       /*查按钮组件并添加事件(点击事件)*/
10this.GetComponent<Button>().onClick.AddListener(OnClick);
rtf格式11    }
12
13/*点击时触发*/
14private void OnClick() {
15/*将状态设置false才能退出游戏*/
16        UnityEditor.EditorApplication.isPlaying = false;
17        Application.Quit();
18    }
19
20
21 }

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。