There was an error while loading. Please reload this page.
InputTypes All inputTypes provide an axis property that represents the axis. MoveKeyInput(options: MoveKeyInputOption) PanInput(options: PanInputOption) PinchInput(options: PinchInput) WheelInput(options: WheelInputOption)
All inputTypes provide an axis property that represents the axis.
axis
<Axes axis={ { x: [0, 100], y: [0, 100], z: [0, 50] } }> ... </Axes>
<Axes axis={{ x: { range: [0, 100], bounce: [20, 50], }, y: { range: [0, 100], bounce: [20, 50], }, z: { range: [0, 50], bounce: [20, 50], }, }}> ... </Axes>
inputs
<Axes inputs={ new MoveKeyInput({ axis: "x y", scale: [1, -1] }) }> ... </Axes>
<Axes inputs={[ new MoveKeyInput({axis: "x y", scale: [10, -10]}), new PanInput({axis: "x y"}) ]}> ... </Axes>