Interface IVector3PropertyItemOptions

Optional properties for Vector3 property item

Hierarchy

Properties

enable?: boolean

Remarks

Initial enabled state of property item. If undefined, it will default to true.

hiddenLabel?: boolean

Remarks

If true label text will be hidden. It will be visible by default.

max?: Partial<Vector3>

Remarks

The min possible limits. If undefined, Number.MAX_SAFE_INTEGER will be used.

min?: Partial<Vector3>

Remarks

The min possible limits. If undefined, Number.MIN_SAFE_INTEGER will be used.

onChange?: ((newValue, oldValue) => void)

Type declaration

    • (newValue, oldValue): void
    • Parameters

      • newValue: Vector3
      • oldValue: Vector3

      Returns void

      Remarks

      This callback is called when UI control is changed.

Remarks

Localized title of the property item

tooltip?: LocalizedString

Remarks

Tooltip description of the property item

visible?: boolean

Remarks

Initial visibility state of property item. If undefined, it will default to true.