应用程序退出对话框提示与Android上的按钮使用Unity 5.3.4 c#

时间:2016-07-12 17:57:21

标签: c# android unity3d unityscript unity5

我是团结的新手。我需要帮助来设置一个对话框提示,其中包含"是" &安培; "否"用于退出游戏的按钮。当用户按下"后退按钮"时,应该生成对话框。 目前我正在使用此代码进行退出,但会导致意外退出。

using UnityEngine;
using System.Collections;
public class AndroidExit : MonoBehaviour
{
#if UNITY_ANDROID
    void Update()
    {
        if (Input.GetKeyDown(KeyCode.Escape))
            Application.Quit();
    }
#endif
}

任何帮助将不胜感激。谢谢你

1 个答案:

答案 0 :(得分:0)

好的找到了解决方案。我希望它可以帮助像我这样的人:)

使用Mobile Native PopUps插件(https://unionassets.com/mobile-native-popups

1.将其导入您的项目

2.you必须从移动文件(资产/插件/ StansAssets到→资产/插件)。

3.将此代码传递给您的脚本(或创建一个新脚本)

let entityDescription = NSEntityDescription.entity(forEntityName: "Person", in: self.persistentContainer.viewContext)
let newPerson = NSManagedObject(entity: entityDescription!, insertInto: self.persistentContainer.viewContext)
newPerson.setValue("Thomas", forKey: "first")

4.将脚本拖放到层次结构中的主摄像头........