【发布时间】:2019-03-24 00:11:02
【问题描述】:
我正在尝试渲染 1000 以外的对象。
let box = SCNBox(width: 500, height: 500, length: 500, chamferRadius: 0)
let boxNode = SCNNode(geometry: box)
boxNode.position = SCNVector3(0, 0, -2000)
sceneView.scene.rootNode.addChildNode(boxNode)
从这个this answer我知道ARKit直接设置了SCNCamera的projectionTransform。那么有没有我改变这个 projectionTransform 以便将对象渲染得更远?
【问题讨论】:
标签: swift camera scenekit augmented-reality arkit