我正在使用 Reality Composer 创建一个圆柱体对象。我的要求是用自定义图像包裹圆柱体。图像由应用程序动态创建。
我尝试了以下方法,但到目前为止它不起作用。
代码:
// Load the "anchor" scene from the "Experience" Reality File
let anchor = try! Experience.loadAnchor()
// Add the anchor to the scene
arView.scene.anchors.append(anchor)
let cylinderEntity : Entity = anchor.cylinder!
let cylinderModelEntity = cylinderEntity.children[0]
var cylinderModelComponent : ModelComponent = cylinderModelEntity.components[ModelComponent.self]!
let paths : NSArray = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true) as NSArray
let path : NSString = paths.object(at: 0) as! NSString
let filePath : NSString = path.strings(byAppendingPaths: ["Image.png"])[0] as NSString
let …Run Code Online (Sandbox Code Playgroud)