查看此代码:
let sphereGeometry = SCNSphere(radius: 10)
sphereGeometry.isGeodesic = falsebetter
let sphereMaterial = SCNMaterial()
sphereMaterial.diffuse.contents = newImage
sphereMaterial.isDoubleSided = true
sphereGeometry.materials = [sphereMaterial]
sphere = SCNNode(geometry: sphereGeometry)
sphere.position = SCNVector3(x: 0, y: 0, z: 0)
newImage
是1440x720(我从帽子中挑出的一个数字)。
好的,newImage
的左右边缘出现在球体上的哪个位置?我原本以为它会是" north",但似乎并非如此。我的图像似乎以东方为中心,这意味着接缝位于西边。我似乎无法在the docs中找到对此的讨论。