swift – SceneKit – 自定义几何体不显示

我应该看到2个黄色三角形,但我什么也看不见.
class Terrain {

    private class func createGeometry () -> SCNGeometry {

        let sources = [
            SCNGeometrySource(vertices:[
                SCNVector3(x: -1.0,y: -1.0,z:  0.0),SCNVector3(x: -1.0,y:  1.0,SCNVector3(x:  1.0,z:  0.0)],count:4),SCNGeometrySource(normals:[
                SCNVector3(x:  0.0,y:  0.0,z: -1.0),SCNVector3(x:  0.0,z: -1.0)],count:4)
        ]

        let elements = [
            SCNGeometryElement(indices: [0,2,3,1,2],primitiveType: .Triangles)
        ]

        let geo = SCNGeometry(sources:sources,elements:elements)

        let mat = SCNMaterial()
        mat.diffuse.contents = UIColor.yellowColor()
        mat.doubleSided = true
        geo.materials = [mat]

        return geo
    }

    class func createNode () -> SCNNode {

        let node = SCNNode(geometry: createGeometry())
        node.name = "Terrain"
        node.position = SCNVector3()
        return node
    }
}

我用它如下:

let terrain = Terrain.createNode()
sceneView.scene?.rootNode.addChildNode(terrain)


let camera = SCNCamera()
camera.zFar = 10000
self.camera = SCNNode()
self.camera.camera = camera
self.camera.position = SCNVector3(x: -20,y: 15,z: 30)
let constraint = SCNLookAtConstraint(target: terrain)
constraint.gimbalLockEnabled = true
self.camera.constraints = [constraint]

sceneView.scene?.rootNode.addChildNode(self.camera)

我看到其他节点具有非自定义几何体.怎么了?

注意:请参阅Ash的答案,对于现代Swift而言,这是一个比这个更好的方法.

您的索引数组具有错误的size元素.它被推断为[Int].你需要[CInt].

我将你的元素设置分解为:

let indices = [0,2] // [Int]
    print(sizeof(Int))               // 8
    print(sizeof(CInt))              // 4
    let elements = [
        SCNGeometryElement(indices: indices,primitiveType: .Triangles)
    ]

要使索引像预期的C数组一样打包,请显式声明类型:

let indices: [CInt] = [0,2]

Custom SceneKit Geometry in Swift on iOS not working but equivalent Objective C code does更详细,但它是针对Swift 1编写的,所以你必须做一些翻译.

SCNGeometryElement(indices:,primitiveType :)似乎没有在任何地方记录,尽管它确实出现在标题中.

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...