Hey
I’ve been making a flight system and I’m trying to understand the math required to make the AlignOrientation have the character face the direction he is moving.
As of right now, I am using this formula for the AlignOrientation, but I do not want it to rely on the CFrame of the Camera, as it causes sideways flight to look unnatural.
flightOrientation.CFrame = Camera.CFrame * CFrame.Angles(math.rad(-30*math.clamp(flightSpeed,0.1,3)),0,0)
The CFrame.Angles part is used to make the character tilt forward based on the flight speed.
Here’s a visual example of what I’m working with.
As you can see, while flying forward it behaves as it should (because the forward direction matches the camera direction)
But once I start moving sideways it becomes unnatural due to the lack of character rotation.
So I am trying to figure out what is required to make the AlignOrientation base its direction on character movement direction as opposed to Camera CFrame.