我尝试修改 SceneForm 示例,以便在触摸场景后立即相对于相机定位对象,但没有对象出现。我错过了什么?检查文档和 YouTube 视频无济于事。任何想法,将不胜感激!
下面的代码(在 Kotlin 中):
arFragment!!.arSceneView.setOnTouchListener { view : View, event: MotionEvent ->
println("Touch!")
val andy = Node()
andy.setParent(arFragment?.arSceneView?.scene?.camera)
andy.localPosition = Vector3(1.0f, 1.0f, 1.0f)
andy.renderable = andyRenderable
true
}