For an anchor with a single child, is there any difference between repositioning the anchor and repositioning the child entity?
let material = SimpleMaterial(color: .gray, isMetallic: false)
let entity = ModelEntity(mesh: .generateBox(size: 0.3), materials: [material])
// position anchor
let anchor = AnchorEntity(world: SIMD3<Float>(x: 0, y: 0.5, z: 0))
anchor.addChild(entity)
arView.scene.addAnchor(anchor)
// vs. position child
let material = SimpleMaterial(color: .gray, isMetallic: false)
let entity = ModelEntity(mesh: .generateBox(size: 0.3), materials: [material])
entity.position = SIMD3<Float>(x: 0, y: 0.5, z: 0)
let anchor = AnchorEntity(world: .zero)
anchor.addChild(entity)
arView.scene.addAnchor(anchor)