gpt4 book ai didi

swift - 如何使 Text 与 Box 具有相同的位置和方向?

转载 作者:行者123 更新时间:2023-12-05 01:29:33 24 4
gpt4 key购买 nike

我正在使用 RealityKit 并努力设置应可读并放置在框上的文本。无论盒子如何设置,它都应该始终跟随盒子的位置。

let textMesh = MeshResource.generateText("ABC", extrusionDepth: 0.001, font: fonts)

let textEntity = ModelEntity(mesh: textMesh, materials: [UnlitMaterial(color: .black)])
let boxMeshForText = MeshResource.generateBox(width: 0.25,
height: 0.1,
depth: 0,
cornerRadius: 0.001)
let boxEntityForText = ModelEntity(mesh: boxMeshForText,
materials: [UnlitMaterial(color: UIColor.white)])
textEntity.setPosition([-0.09, -0.03, 0.001], relativeTo: boxEntityForText)
boxEntityForText.addChild(textEntity)

let textAnchor = ARAnchorEntity()
textAnchor.addChild(boxEntityForText, preservingWorldTransform: true)
textAnchor.setPosition([0.05, 0.05, 0.02], relativeTo: anchor)
textAnchor.transform.rotation = simd_quatf(angle: -90 * .pi/180, axis: [1,0,0])
anchor.addChild(textAnchor)

上面的代码给出了错误的结果。我想要的结果可以在附图中看到。

enter image description here

最佳答案

这很容易。只需将文本作为立方体的子项,然后用 anchor 固定该立方体。在 ECS 框架中,子项总是从其父项位置、方向和比例进行复制。

let box = MeshResource.generateBox(size: 1)
let boxEntity = ModelEntity(mesh: box)

let anchor = AnchorEntity()
boxEntity.setParent(anchor)
arView.scene.addAnchor(anchor)

let text = MeshResource.generateText("AR",
extrusionDepth: 0.01,
font: .systemFont(ofSize: 0.25),
containerFrame: .zero,
alignment: .center,
lineBreakMode: .byWordWrapping)

let shader = UnlitMaterial(color: .yellow)
let textEntity = ModelEntity(mesh: text, materials: [shader])
textEntity.position.z += 0.6

// Changing a position, orientation and scale of the parent
boxEntity.addChild(textEntity)
boxEntity.transform = Transform(pitch: .pi/8, yaw: .pi/8, roll: .pi/8)
boxEntity.position.x = -0.5
boxEntity.scale /= 2

现在 child 总是跟着他的 parent 。

enter image description here

关于swift - 如何使 Text 与 Box 具有相同的位置和方向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67716279/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com