mirror of
https://github.com/IrisDimensions/earthworld.git
synced 2026-01-04 15:31:38 +00:00
24 lines
514 B
Markdown
24 lines
514 B
Markdown
# IrisAxisRotationClamp
|
|
> Represents a rotation axis with intervals and maxes
|
|
```json
|
|
{
|
|
"min": 0,
|
|
"max": 0,
|
|
"interval": 0,
|
|
"enabled": false
|
|
}
|
|
```
|
|
|
|
## enabled
|
|
> Should this axis be rotated at all?
|
|
|
|
## min
|
|
> The minimum angle (from) or set this and max to zero for any angle degrees
|
|
|
|
## max
|
|
> The maximum angle (to) or set this and min to zero for any angle degrees
|
|
|
|
## interval
|
|
> Iris spins the axis but not freely. For example an interval of 90 would mean 4 possible angles (right angles) degrees
|
|
|