Interface ICursorMutableProps

interface ICursorMutableProps {
    __mutableProp?: null;
    autoStop?: boolean;
    enabled?: boolean;
    height?: number;
    lerp?: number;
    width?: number;
}

Hierarchy (View Summary)

Properties

__mutableProp?: null
autoStop?: boolean

Stops rendering the cursor automatically when its coordinates and size closely match the target values.

true
enabled?: boolean

Enables or disables the custom cursor interactions.

true
height?: number

The initial height of the custom cursor.

50
lerp?: number

Linear interpolation factor for smooth cursor movement. The value must be between 0 and 1, with higher values indicating faster movement.

0.2
width?: number

The initial width of the custom cursor.

50