RotationModule
Extends the Module Object
This Object extends Module, this means you can use all the functions the Module
object has.
Creating your own RotationModule
RotationModule
To create your own HudModule
you can use breeze.registerRotationModule(String name, String description, int priority, Object obj): RotationModule
Priority
Each rotation module has a priority, the modules with the highest priority value will have the option to rotate as first. If it doesn't make use of the priority it will be passed on to the next highest module on the list. A priority value below 0 is totally possible.
RotationModule functions
For a RotationModule
you can provide a function for doing the rotations here we will explain how this works.
rotate
rotate
Gets called whenever the module is enabled and has the rotation priority over all other modules. To rotate the actual player you can use the given Rotation
. If you do not rotate at all the priority will be passed on the the next module.
updateNoRotate
updateNoRotate
Gets called instead of rotate
whenever another module has priority over your own module.
Last updated