我对 Swift 和 SceneKit 还是很陌生,我目前的问题是我尝试创建的自定义形状没有显示出来,即使框架中的原始形状显示得很好。
我一直在关注https://www.raywenderlich.com/1261-scene-kit-tutorial-with-swift-part-1-getting-started的教程。
我还查看了关于 SO 的答案:SceneKit – Custom geometry does not show up。我在这里查看了其他答案,但没有一个对我有用。
这是我的代码:
import UIKit
import SceneKit
import QuartzCore
class GameViewController: UIViewController {
var scnView: SCNView!
var scnScene: SCNScene!
var cameraNode: SCNNode!
override func viewDidLoad() {
super.viewDidLoad()
setupView()
setupScene()
setupCamera()
let lightNode0 = SCNNode()
lightNode0.light = SCNLight()
lightNode0.light!.type = .omni
lightNode0.position = SCNVector3(x: 0, y: 10, z: 10)
scnScene.rootNode.addChildNode(lightNode0)
let lightNode1 = SCNNode()
lightNode1.light = SCNLight()
lightNode1.light!.type = .omni
lightNode1.position = SCNVector3(5, -10, 0)
scnScene.rootNode.addChildNode(lightNode1)
spawnShape()
}
func shouldAutorotate() -> Bool {
return true
}
func prefersStatusBarHidden() -> Bool {
return true
}
func setupView() {
scnView = self.view as! SCNView
// 1
scnView.showsStatistics = true
// 2
scnView.allowsCameraControl = true
// 3
scnView.autoenablesDefaultLighting = true
}
func setupScene() {
scnScene = SCNScene()
scnView.scene = scnScene
}
func setupCamera() {
// 1
cameraNode = SCNNode()
// 2
cameraNode.camera = SCNCamera()
// 3
cameraNode.position = SCNVector3(x: 0, y: 0, z: 15)
// 4
scnScene.rootNode.addChildNode(cameraNode)
}
这是生成自定义形状的函数:
func spawnShape() {
// 1
var geometry:SCNGeometry
let positions = [
SCNVector3(-2, 1.5, 0), //0
SCNVector3(-2, 1.5, 0), //1
SCNVector3(2, -1.5, 0), //2
SCNVector3(2, 1.5, 0), //3
SCNVector3(-2, 1.5, 0.4), //4
SCNVector3(2, 1.5, 0.4) //5
]
let source = SCNGeometrySource(vertices: positions)
let indices:[CInt] = [
0, 2, 1,
0, 3, 2,
0, 4, 5,
0, 5 ,3,
4, 1, 2,
4, 2, 5
]
let element = SCNGeometryElement(indices: indices, primitiveType:.triangles)
// 4
geometry = SCNGeometry(sources: [source], elements: [element])
let geometryNode = SCNNode(geometry: geometry)
// 5
scnScene.rootNode.addChildNode(geometryNode)
}
}