Reputation: 99
I am wondering if the orbit animation can also indicate the orbit path. My desired goal is to make it display the path my planet will follow when orbiting around the user. Here is an attachment of what I want to replicate when my user uses the app:
It's important to mention that this is a scene, I am not loading a single entity model but an entire scene with all the planets. I'll throw some code for context:
RealityView { content in
if let scene = try? await Entity(
named: "MovingPlanets",
in: realityKitContentBundle
) {
content.add(scene)
}
}
Upvotes: 0
Views: 23