Last updated
rotate(
yaw,pitch,speed):boolean
Request a smooth rotation toward the given yaw/pitch at the given speed (degrees per tick). Returns true when the target is reached this call.
number
Target yaw in degrees.
number
Target pitch in degrees.
number
Max step (deg/tick).
boolean
Last updated
const done = rotationManager.rotate(90.0, 0.0, 10.0);