# rotationManager

The rotation manager.

### Example

```ts
rotationManager.setPriority(10);

rotationManager.onRotate((updateNoRotate) => {
    // Aim 45° yaw, 10° pitch at 6°/tick
    rotationManager.rotate(45.0, 10.0, 6.0);
});

rotationManager.onUpdateNoRotate(() => {
    // Called when this module has lost priority to another rotation module
});
```

### Functions

* [getSpoofedPitch](https://scripting.breeze.rip/api/functions/rotationmanager.getspoofedpitch)
* [getSpoofedYaw](https://scripting.breeze.rip/api/functions/rotationmanager.getspoofedyaw)
* [onUpdate](https://scripting.breeze.rip/api/functions/rotationmanager.onupdate)
* [onUpdateNoRotate](https://scripting.breeze.rip/api/functions/rotationmanager.onupdatenorotate)
* [rotate](https://scripting.breeze.rip/api/functions/rotationmanager.rotate)
* [setPriority](https://scripting.breeze.rip/api/functions/rotationmanager.setpriority)
