@kitschpatrol/tweakpane-plugin-rotation
Version:
A fork of tweakpane-plugin-rotation with build optimizations.
9 lines (8 loc) • 336 B
TypeScript
import type { PickerLayout, Value, ViewProps } from '@tweakpane/core';
import type { Rotation } from './Rotation.js';
export interface RotationInputGizmoViewConfig {
value: Value<Rotation>;
mode: Value<'free' | 'angle-x' | 'angle-y' | 'angle-z' | 'angle-r' | 'auto'>;
viewProps: ViewProps;
pickerLayout: PickerLayout;
}