Aren’t you using the Orbit example by JR01? I’m not sure if Galactian has even made an orbit example (As there is no point with the amazing work from JR)
Also the reason it’s not working is that you need to set the mouse to use Game Cords, not Screen Chords
Also, when coming across problems like this in code think about what’s going wrong.
In this case, it was the sword not being in the proper place when the camera moves. So you know it has something to do with the angle because the angle is what determines the sword position. You know only 1 thing affects the angle, and that’s the mouse position, so you look at the mouse position.
That should be somewhat of your line of thought when trying to figure out a problem