[unity]在退出时添加提示

该功能说明:在游戏中点击游戏关闭按钮(或者退出按钮)时,往往会有需求期望在此时,添加退出提示(比如是否确认要退出)。

代码环境:

  unity:version5.3.4.f1

  IDE:Microsoft visual studio Community 2015

相关代码说明:

MonoBehaviour的回调一定程度上反映着运行流程。

OnApplicationQuit() ,下述引用下官方文档说明:

Sent to all game objects before the application is quit.

In the editor this is called when the user stops playmode. In the web player it is called when the web view is closed.

功能实现:

bool m_AppQuit = false;

void OnApplicationQuit()

{

if (m_AppQuit  == false)

{

//do something

Application.CancelQuit();        //此时需要展开提示框如此之类,所以需要暂时取消退出流程。

m_AppQuit  = true;

}

}

额外说明:上述引用的官方文档也提出了,OnApplicationQuit()在编辑模式时,是在停止播放时调用的。所以该效果在编辑模式并不能完全展现,因此建议实际测试时还是需要build出来再测试。

时间: 2024-10-27 19:24:39

[unity]在退出时添加提示的相关文章

[UWP]在应用退出时弹出确认提示框

1. 需求 在应用退出时(点击右上角的关闭按钮)弹出一个确认按钮可以说是一个最常见的操作了,例如记事本的"你是否保存": 但这个功能在UWP上居然有点小复杂.这篇文章将解释如何实现这个功能. 2. CloseRequested 为了监视应用退出事件,我本来使用了CoreApplication.Exiting,但好像并不起作用,后来我就没再研究它的触发机制了.在Windows 10 Creators Update (15063)以后UWP提供了一个新的API:SystemNavigati

添加AD RMS role时,提示密码不能被验证The password could not be validated

"The password could not be validated" when attempting to provision an AD RMS server. Symptoms When you attempt to provision an Active Directory Rights Management Services server you receive the following error:  "The password could not be v

Struts2框架中书写XML配置文件时能添加提示技巧(方案二)

1.  先在/工程名/WebRoot/WEB-INF/lib/struts2-core-2.1.8.jar中找到struts-2.1.dtd文件. 2.  在Myeclipse8.6-->Window-->Preferences 3.  在搜索框输入xml文件,找到XMLCatalog,单击XML Catalog出现如上页面,之后单击Add按钮,出现如下图: 4.  在Location中选择FileSystem,选择struts-2.1.dtd文件的位置,如果这个文件在工程里面,可以使用Wor

winform退出或关闭窗体时弹窗提示代码:转

winform退出或关闭窗体时弹窗提示代码,当我们点击窗体的 X 按钮时,会弹出一个对话框,询问我们是直接退出,还是最小化到托盘,还是取消这个行为.或是是否保存当前修改等等.以下以最小化到托盘为例.        首先, 要确定已经将控件NotifyIcon拖到应用窗体中,属性name为notifyicon1. 然后, 双击窗体的FormClosing的事件 ,具码内容如下: private void Form1_FormClosing(object sender, FormClosingEve

005.使用百度SDK写hello baidumap时,在布局xml文件中添加地图控件时;提示'clickable' attribute found, please also add 'focusable' 错误

0.报错&提示信息: 'clickable' attribute found, please also add 'focusable'  A widget that is declared to be clickable but not declared to be focusable is not accessible via the keyboard. Please add the focusable attribute as well. 1.原因: 一个控件,如果没有定义focusable

【转】ubuntu 11.04使用apt-get安装软件时一直提示E:unable to locate package

问题: VMware虚拟机安装了ubuntu 11.04,在使用apt-get安装软件时一直提示E:Unable to locate package. 百度了原因,说是要更新源,使用命令:sudo apt-get update更新了,但更新之后问题还是存在: 解决方案: 主要还是源的问题,目前网上找的很多源都是很久以前的了,很多的可能都不能用了: 然后自己重新下载了一个ubuntu 14.04版本的源替换原来的sources.list文件,然后运行sudo apt-get update更新后就可

CENTOS在输入ifconfig命令时,提示没有命令的处理方法

CENTOS在输入ifconfig命令时,提示没有命令的处理方法 今天在虚机上装了个CENTOS.装好后,好多命令都提示找不到.百度后,问题解决.将处理方法记录下来,以备日后使用. ------------------------------------无敌分割线--------------------------------------- # ifconfig 提示命令不存在 使用 # /sbin/ifconfig 即可 原因: 系统默认的环境变量设置不对 在 普通用户 和root用户下分别执

CENTOS在输入ifconfig命令时,提示没有命令的处理方法 - 只是一段过程 - 开源中国社区

body { font-family: 微软雅黑; font-size: 10.5pt; line-height: 1.5; } html, body { color: ; background-color: ; } h1 { font-size:1.5em; font-weight:bold; } h2 { font-size:1.4em; font-weight:bold; } h3 { font-size:1.3em; font-weight:bold; } h4 { font-size:

打开mysql时,提示 1040,Too many connections

打开mysql时,提示 1040,Too many connections,这样就无法打开数据库,看不了表里边的内容了. 出现这个问题的原因是,同时对数据库的连接数过大,mysql默认的最大连接数是100,我们可以在命令行方式下 查看最大连接数的值. mysqladmin -uusername -ppassword variables |find "max_con" 注意上面的命令中,-u和用户名之间,-p和密码之间没有空格. 我们可以通过以下方法修改数据库的最大连接数:(命令行方式)