InterfaceAnimationClipBeta

interface AnimationClip {
    animationAsset: AnimationAsset;
    begin: number;
    blendMode: AnimationLayerBlendMode;
    disabled: boolean;
    end: number;
    id: Uuid;
    name: string;
    playbackMode: PlaybackMode;
    playbackSpeed: number;
    reversed: boolean;
    scaleMode: AnimationLayerScaleMode;
    type: string;
    weight: number;
    getDirectlyReferencedEntities(): Entity[];
    getOwnedEntities(): Entity[];
    getTypeName(): string;
    isOfType(type: string): boolean;
    isSame(other: ScriptObject): boolean;
    remapReferences(referenceMapping: object): void;
}

Hierarchy (view full)

Properties

animationAsset: AnimationAsset
begin: number
disabled: boolean
end: number
id: Uuid

The unique id of the entity.

name: string
playbackMode: PlaybackMode
playbackSpeed: number
reversed: boolean
type: string

The entity's type.

weight: number

Methods

  • Beta

    Swap this entity for another one based on a JSON of the current entity id and the target entity id.

    Parameters

    • referenceMapping: object

    Returns void