Orient store
Orient values
| Property | default | Description |
|---|---|---|
| active | false |
Orient events
| Event name | Argument | Description |
|---|---|---|
| change | Element | Called when the value is changed |
| mount | Element | Called when the component is mounted |
| clean | null | Called when the component is removed |
Orient state
export interface OrientState {
snapshot: [OrientState]
active: boolean
_active: boolean
_value: Vec3
value: Vec3
delta: Vec3
offset: Vec3
movement: Vec3
memo: any
callback(): void
change(): void
mount(): void
clean(): void
}