gpt4 book ai didi

android - Vuforia Unity3D : how to make on-screen close/back/quit button?

转载 作者:行者123 更新时间:2023-11-29 00:15:37 26 4
gpt4 key购买 nike

我刚开始制作 AR 应用程序。

我做了第一个,工作,再开心不过了。但我有一个问题:我不知道如何在屏幕上插入一个按钮,当用户点击(是的,点击,我想在 Android 上工作)时关闭应用程序。

因此,当我运行我在 Unity 中制作的应用程序时,我只能看到相机。我想在屏幕的一角放置一个按钮,该按钮将始终站在那里并关闭应用程序。我需要这个按钮,因为我无法使用“后退”按钮关闭应用程序。

我使用的是 Nexus 7 2013 (android 5.0),因为只有那里的应用程序可以运行。在 Galaxy S2 4.4.4 上,我总是崩溃(无法运行,只有闪屏)。但这是另一个问题:)

最佳答案

我刚遇到同样的问题,已经找到答案了。您实际上可以使用后退按钮关闭应用程序!我在这里找到答案 https://developer.vuforia.com/forum/unity-3-extension-technical-discussion/android-back-key-not-working-unity-extension-imagetarge

  1. create a new C# script in your assets
  2. rename it, and open it (the default MonoDevelop by Unity will be opened to edit the script)

  3. write this code into the script:

    public void Update () {

        if (Application.platform == RuntimePlatform.Android) {

    if (Input.GetKeyUp(KeyCode.Escape)) {

    //quit application on return button

    Application.Quit();

    return;

    }

    }
  4. save it, and you can close the editor

  5. in the 'hierarchy' tab, you can click on 'ImageTarget' component and then click the 'add element' in the inspector, then choose 'script' option and choose the script that you've just made (I choose 'ARCamera' component instead and it still works)

希望这会有所帮助,虽然我对你的项目可能来不及了,但我希望将来遇到同样问题的人能得到帮助:)

关于android - Vuforia Unity3D : how to make on-screen close/back/quit button?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27072138/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com