What's with the pitch, yaw, and roll?

Unfortunately, they are not in order. For example to create a rotator in C++ the constructor is: FRotator
(
float InPitch,
float InYaw,
float InRoll
)

so you first provide the Y, then Z, and then X…

1 Like