override func viewDidLoad() {
super.viewDidLoad()
// Set the view's delegate
sceneView.delegate = self
// Show statistics such as fps and timing information
sceneView.showsStatistics = true
// Create a new scene
let scene = SCNScene(named: "art.scnassets/exemple.dae")!
// Set the scene to the view
sceneView.scene = scene
}
我有我导入的这个型号,但我无法按照自己的意愿放置相机,如何将相机连接到我的3D模型的相机?或者我如何管理AR的初始摄像头?
答案 0 :(得分:0)
要更改模型的默认方向,请先从Xcode导航器中选择模型文件,然后将相机视点设置为 前 (从底部栏)。这将显示模型在场景中加载时的确切视图。
然后,要更改模型的位置和方向,请从右侧菜单(多维数据集图标)中选择 节点检查器 并更改 Euler x,y,z值。