interface IPropertyItemOptionsVector3 {
    enable?: boolean;
    maxX?: number;
    maxY?: number;
    maxZ?: number;
    minX?: number;
    minY?: number;
    minZ?: number;
    onChange?: OnChangeCallback<PropertyBag, string>;
    titleAltText?: string;
    titleStringId?: string;
    visible?: boolean;
}

Hierarchy (View Summary)

Properties

enable?: boolean

If the item is enabled in the UI.

maxX?: number

The max possible value for the X axis. By default Number.MAX_SAFE_INTEGER

maxY?: number

The max possible value for the Y axis. By default Number.MAX_SAFE_INTEGER

maxZ?: number

The max possible value for the z axis. By default Number.MAX_SAFE_INTEGER

minX?: number

The min possible value for the X axis. By default Number.MIN_SAFE_INTEGER

minY?: number

The min possible value for the Y axis. By default Number.MIN_SAFE_INTEGER

minZ?: number

The min possible value for the Z axis. By default Number.MIN_SAFE_INTEGER

onChange?: OnChangeCallback<PropertyBag, string>

Callback to execute when the value is updated.

titleAltText?: string

Fallback display text if no loc ID

titleStringId?: string

Loc ID (resolved on client)

visible?: boolean

If the item should be visible in the UI.