swift - SceneKit 自定义几何形状未显示

标签 swift scenekit virtual-reality scngeometry

我是 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)
    }
}

最佳答案

试试我的轻量级代码(用于快速测试的 macOS 版本)。

它正在工作:

import SceneKit

class GameViewController: NSViewController {

    override func viewDidLoad() {
        super.viewDidLoad()
        let scene = SCNScene()
        let cameraNode = SCNNode()
        cameraNode.camera = SCNCamera()
        scene.rootNode.addChildNode(cameraNode)
        cameraNode.position = SCNVector3(x: 0, y: 0, z: 3)

        let geometry: SCNGeometry?
        let positions = [
            SCNVector3(0, 1, 0),
            SCNVector3(-0.5, 0, 0.5),
            SCNVector3(0.5, 0, 0.5),
            SCNVector3(0.5, 0, -0.5),
            SCNVector3(-0.5, 0, -0.5),
            SCNVector3(0, -1, 0),
        ]
        let source = SCNGeometrySource(vertices: positions)
        let indices: [UInt32] = [
            0, 1, 2,
            2, 3, 0,
            3, 4, 0,
            4, 1, 0,
            1, 5, 2,
            2, 5, 3,
            3, 5, 4,
            4, 5, 1
        ]
        let element = SCNGeometryElement(indices: indices, primitiveType:.triangles)
        geometry = SCNGeometry(sources: [source], elements: [element])
        geometry!.firstMaterial?.diffuse.contents = NSColor.red
        let geometryNode = SCNNode(geometry: geometry)
        scene.rootNode.addChildNode(geometryNode)

        let scnView = self.view as! SCNView
        scnView.scene = scene
        scnView.allowsCameraControl = true
        scnView.autoenablesDefaultLighting = true
        scnView.backgroundColor = NSColor.black
    }
}

关于swift - SceneKit 自定义几何形状未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52528019/

相关文章:

ios - UIButton 在工作前轻按 3 次? swift

ios - 或者在 whereField 中从 Firestore 中获取文档

opengl - 如何将 SCNScene 渲染到纹理

ios - SceneKit 围绕另一个节点 move 相机

c# - 如何为Android应用程序统一访问手机后退按钮

c# - 在某些 HTC VIVE Controller 上打开 GUI Angle/Turn

ios - 注册后无法使用 iOS Cognito UserPool SDK 更改用户属性

swift - 将容器 View 添加到代码时发生 fatal error

ios - SceneKit:iOS 上的 SKNode 分辨率

ios - 如何使用 Google Cardboard SDK 在 Unity 中为 iOS 构建 VR 视频播放器