有没有一种方法可以在不支持 ARCORE 的 phone 上测试增强现实应用程序
Is there a way I can test an Augmented Reality app on a phone that doesn't support ARCORE
我有一台小米红米Note 8 Pro,好像不支持ARCore。我找到了一些方法来避免这种情况,但它似乎很复杂也不太安全。
我的问题是:
如果我想在 Unity 中创建一个还需要使用 GPS 模块的应用程序,你会推荐哪些其他工具,可能是高度计,当然还有相机(AR 东西)?
我听说 Vuforia 可以解决这个问题,还从 Unity 读到了一些关于 AR Foundation 的内容。但对我来说,根据所选的部署,它看起来像是使用 AR Core 或 AR Kit(甚至 Vuforia)。
可能对此有任何许可吗?
我建议您不要尝试弄乱您的设备。它有充分的理由不支持 ARCore。也许您只是尝试使用 Android Studio Emulator,但由于某些未知原因,唉,我试过了,但是从 unity 生成的 APK 无法安装在 Emulator 上。架构的一些东西
如果你仍然想使用 Unity。我建议你使用 Vuforia
。它适用于大多数现代设备,甚至不需要设备进行测试,只需点击 unity play mode
,您就可以在您的 PC 上进行测试(需要网络摄像头)。
Vuforia Engine provides a simulator mode in the Game view that you can activate by pressing the Play button. You can use this feature to evaluate and rapidly prototype your scene(s) without having to deploy to a device. (Source: https://library.vuforia.com/articles/Training/getting-started-with-vuforia-in-unity.html)
对于带有 ARFoundation
的 Unity,您不能像使用带有 Vuforia 的 Unity 那样使用您的 PC,您需要 ARCore/ARKit 支持的设备。
最后如果你想要 AR 和 GPS 模块(虽然这不是统一的)检查 AR.js
https://github.com/AR-js-org/AR.js
我有一台小米红米Note 8 Pro,好像不支持ARCore。我找到了一些方法来避免这种情况,但它似乎很复杂也不太安全。 我的问题是: 如果我想在 Unity 中创建一个还需要使用 GPS 模块的应用程序,你会推荐哪些其他工具,可能是高度计,当然还有相机(AR 东西)? 我听说 Vuforia 可以解决这个问题,还从 Unity 读到了一些关于 AR Foundation 的内容。但对我来说,根据所选的部署,它看起来像是使用 AR Core 或 AR Kit(甚至 Vuforia)。 可能对此有任何许可吗?
我建议您不要尝试弄乱您的设备。它有充分的理由不支持 ARCore。也许您只是尝试使用 Android Studio Emulator,但由于某些未知原因,唉,我试过了,但是从 unity 生成的 APK 无法安装在 Emulator 上。架构的一些东西
如果你仍然想使用 Unity。我建议你使用 Vuforia
。它适用于大多数现代设备,甚至不需要设备进行测试,只需点击 unity play mode
,您就可以在您的 PC 上进行测试(需要网络摄像头)。
Vuforia Engine provides a simulator mode in the Game view that you can activate by pressing the Play button. You can use this feature to evaluate and rapidly prototype your scene(s) without having to deploy to a device. (Source: https://library.vuforia.com/articles/Training/getting-started-with-vuforia-in-unity.html)
对于带有 ARFoundation
的 Unity,您不能像使用带有 Vuforia 的 Unity 那样使用您的 PC,您需要 ARCore/ARKit 支持的设备。
最后如果你想要 AR 和 GPS 模块(虽然这不是统一的)检查 AR.js
https://github.com/AR-js-org/AR.js