Description

Represents an animation track using stepped integer value keyframes.

interface IntStepAnimationTrackKeyFramed {
    name: string;
    uniqueIdentifier: string;
    addKey(time, value): void;
    getTypeName(): string;
    isOfType(type): boolean;
    isSame(other): boolean;
    removeAllKeys(): void;
    removeKeyAt(index): void;
}

Hierarchy (view full)

Properties

name: string

Description

The name of the Asset in Lens Studio.

uniqueIdentifier: string

Methods

  • Parameters

    • time: number
    • value: number

    Returns void

    Description

    Adds a key with value value at time time.

  • 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.

  • Returns void

    Description

    Removes all keys.

  • Parameters

    • index: number

    Returns void

    Description

    Removes key at index index.

Generated using TypeDoc