Description

Represents a rotation animation track using euler angles.

interface QuaternionAnimationTrackXYZEuler {
    name: string;
    uniqueIdentifier: string;
    getChildTrackByIndex(index): AnimationTrack;
    getTypeName(): string;
    isOfType(type): boolean;
    isSame(other): boolean;
    setChildTrackByIndex(index, track): void;
}

Hierarchy (view full)

Properties

name: string

Description

The name of the Asset in Lens Studio.

uniqueIdentifier: string

Methods

  • Parameters

    • type: string

    Returns boolean

    Description

    Returns true if the object matches or derives from the passed in type.

  • Parameters

    Returns boolean

    Description

    Returns true if this object is the same as other. Useful for checking if two references point to the same thing.

  • Parameters

    Returns void

    Description

    Sets child track at index index to track track.

Generated using TypeDoc