The12thAstronaut / SUITS-2021

5 stars 4 forks source link

Enable ability to display and track multiple waypoints on the horizontal compass #46

Closed Henrynaut closed 3 years ago

Henrynaut commented 3 years ago
mannycarr214 commented 3 years ago

I'm not sure where to start in regards to displaying two pointers at the same time! Anything helps

Henrynaut commented 3 years ago

For multiple pointers/markers, we can edit the compass by making the torus/donut the parent game object. Right now the pointer/marker is using the LookAt function to look at the rover, but we'd like to create another marker that simultaneously points at another waypoint, such as a lander.

We should each marker a child of the ring/donut shape.

Henrynaut commented 3 years ago

The way we have it set up with the look at function it forces the whole game object to look at the target. To fix that we need to figure out how to attach the look at function to just the pointers. To combat that Manny was looking at ellipse code to help with the rotations.