> For the complete documentation index, see [llms.txt](https://scripting.breeze.rip/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://scripting.breeze.rip/api/functions/rotationmanager.onupdatenorotate.md).

# rotationManager.onUpdateNoRotate

> **onUpdateNoRotate**(`onUpdate`): `void`

Register a callback that runs on rotation updates when the module has no priority

### Parameters

#### onUpdate

`Function`

Function to invoke each update without rotation.

### Returns

`void`

### Example

```ts
rotationManager.onUpdateNoRotate(() => {
 //idle tick 
 });
```
