Hi,
How come we must write:
“FRotator NewRotation = FRotator(0.0f, -75.0f, 0.0f);” when we declare a new variable instead of simply:
“FRotator NewRotation = (0.0f, -75.0f, 0.0f)”;
If we declare an int we would also just write “int number = 5;” and not “int number = int(5);” or something.