Script API - v1.26.10.22
    Preparing search index...

    Interface IVector3TimelinePropertyItemOptions

    Optional properties for Vector3 Timeline property item

    interface IVector3TimelinePropertyItemOptions {
        bounds?: { maxValue: number; minValue: number };
        decimalPrecision?: number;
        disableAddRemoveNodes?: boolean;
        enable?: boolean;
        entries?: IVector3TimelinePropertyItemEntry[];
        isGraphReadOnly?: boolean;
        onNodeAdded?: (node: IVector3TimelinePropertyItemEntry) => void;
        onNodeChanged?: (node: IVector3TimelinePropertyItemEntry) => void;
        onNodeRemoved?: (node: IVector3TimelinePropertyItemEntry) => void;
        onTimeChanged?: (current: number, prev: number) => void;
        style?: PaneItemStyle;
        title?: LocalizedString;
        visible?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    bounds?: { maxValue: number; minValue: number }

    The data bounds for the value node property

    decimalPrecision?: number

    Custom precision for the calculations

    disableAddRemoveNodes?: boolean

    If true, nodes cannot be added or removed

    enable?: boolean

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

    List of nodes entries in the vector3 timeline.

    isGraphReadOnly?: boolean

    True means nodes cannot be dragged or modified

    onNodeAdded?: (node: IVector3TimelinePropertyItemEntry) => void

    Callback triggered when a new vector3 node is added to the timeline.

    onNodeChanged?: (node: IVector3TimelinePropertyItemEntry) => void

    Callback triggered when a timeline node's vector3 value changes.

    onNodeRemoved?: (node: IVector3TimelinePropertyItemEntry) => void

    Callback triggered when a vector3 node is removed from the timeline. *

    onTimeChanged?: (current: number, prev: number) => void

    This callback is called when UI control time is changed.

    Optional styling overrides for the item.

    Localized title of the property item

    visible?: boolean

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