Unity3D圣典3.3版本-中文版
文集大纲加载中……
本文档使用 MrDoc 发布
-
+
首页
Application.CancelQuit 取消退出
# [Application](Application.html).CancelQuit 取消退出 static function *CancelQuit* () : void *Description* 描述 Cancels quitting the application. This is useful for showing a splash screen at the end of a game. 取消退出。这可以用来在退出游戏的时候显示一个退出画面。 This function only works in the player and does nothing in the web player or editor. IMPORTANT: This function has no effect on iPhone. Application can not prevent termination under iPhone OS. 这个函数只工作在播发器中,在 web 播放器或编辑器中不做任何事。 注意,这个函数在 iphone 中没有效果,应用程序无法防止在 iPhone OS 的终止。 * [C#](#) * [JavaScript](#) ``` using UnityEngine; using System.Collections; public class example : MonoBehaviour { public float showSplashTimeout = 2.0F; private bool allowQuitting = false; void Awake() { DontDestroyOnLoad(); } void OnApplicationQuit() { if (Application.loadedLevelName.ToLower() != "finalsplash") StartCoroutine("DelayedQuit"); if (!allowQuitting) Application.CancelQuit(); } IEnumerator DelayedQuit() { Application.LoadLevel("finalsplash"); yield return new WaitForSeconds(showSplashTimeout); allowQuitting = true; Application.Quit(); } } ``` ``` // Delays quitting for 2 seconds and // 延迟2秒退出。 // loads the finalsplash level during that time. // 在这段时间内加载退出画面 var showSplashTimeout : float = 2.0; private var allowQuitting : boolean = false; function Awake () { // This game object needs to survive multiple levels // 需要在多个关卡中使用的游戏物体 DontDestroyOnLoad (this); } function OnApplicationQuit () { // If we haven't already load up the final splash screen level // 如果我们还没有加载到最后的退出画面 if ( Application.loadedLevelName .ToLower() != "finalsplash") StartCoroutine("DelayedQuit"); // Don't allow the user to exit until we got permission in // 如果我们还没有加载到最后的退出画面 if (!allowQuitting) Application.CancelQuit (); } function DelayedQuit () { Application.LoadLevel ("finalsplash"); // Wait for showSplashTimeout // 等待showSplashTimecout yield WaitForSeconds (showSplashTimeout); // then quit for real // 然后退出 allowQuitting = true; Application.Quit (); } ```
da
2022年5月13日 22:56
转发文档
收藏文档
上一篇
下一篇
手机扫码
复制链接
手机扫一扫转发分享
复制链接
关于 MrDoc
觅思文档MrDoc
是
州的先生
开发并开源的在线文档系统,其适合作为个人和小型团队的云笔记、文档和知识库管理工具。
如果觅思文档给你或你的团队带来了帮助,欢迎对作者进行一些打赏捐助,这将有力支持作者持续投入精力更新和维护觅思文档,感谢你的捐助!
>>>捐助鸣谢列表
微信
支付宝
QQ
PayPal
Markdown文件
分享
链接
类型
密码
更新密码