Coding Python - Rotate object

Is there a way yet to apply transformations to objects using python? I want to rotate an object after it moves. The autofill doesn’t show transform and when I try to use the Api and do something like:

character.transform.rotateLocal(Vector3(0, 0, 0), 45)

nothing happens. Can anyone help with this or verify its not possible? Thank you.

John

1 Like

SOLVED: horse.transform.rotate_local(Vector3(0, 0, 0), Vector3(0,0,1),0.5)

1 Like