如何在 ARTrackedImage 上放置平面 - Unity3D AR Foundation
How to place a plane over an ARTrackedImage - Unity3D AR Foundation
我正在使用我的 AR-App 跟踪图像,每当检测到图像时,应该有一个平面覆盖跟踪图像。
该平面应与图像具有相同的尺寸和旋转。
我已经尝试过使用 this code snippet but retrieving the image's children's transform yields an error because the image doesn't have any children. Following this video 也不成功。
有人知道如何获取 ARTrackedImage 的平面信息吗?
我解决了我的问题,方法是实例化一个 plane-prefab 并将跟踪图像的变换作为父级并修改其 localScale 以适应图像的大小。
我正在使用我的 AR-App 跟踪图像,每当检测到图像时,应该有一个平面覆盖跟踪图像。
该平面应与图像具有相同的尺寸和旋转。
我已经尝试过使用 this code snippet but retrieving the image's children's transform yields an error because the image doesn't have any children. Following this video 也不成功。
有人知道如何获取 ARTrackedImage 的平面信息吗?
我解决了我的问题,方法是实例化一个 plane-prefab 并将跟踪图像的变换作为父级并修改其 localScale 以适应图像的大小。