在球面上写文字SceneKit?
我想知道是否有方法在SceneKit中沿着球体对象的表面写入文本。
我知道我在表面上放置了一个纹理,如果我有一个图像,可以获得这种效果,但是我想知道是否可以在球体表面动态添加文本。
任何想法?
编辑:
这工作:
let layer = CALayer()
layer.frame = CGRectMake(0, 0, 100, 100)
layer.backgroundColor = UIColor.orangeColor().CGColor
var textLayer = CATextLayer()
textLayer.frame = layer.bounds
textLayer.fontSize = layer.bounds.size.height
textLayer.string = "Test"
textLayer.alignmentMode = kCAAlignmentLeft
textLayer.foregroundColor = UIColor.greenColor().CGColor
textLayer.display()
layer.addSublayer(textLayer)
let box = SCNBox(width: 10, height: 10, length: 10, chamferRadius: 0.5)
let boxNode = SCNNode(geometry: box)
box.firstMaterial?.locksAmbientWithDiffuse = true
boxNode.position = position
box.firstMaterial?.diffuse.contents = layer
scene.rootNode.addChildNode(boxNode)
你可以使用任何CALayer
作为你的SCNMaterialProperty
的内容:)