The Animator class is used to create 3D animation components.

Animator 类用于创建3D动画组件。

层级 (查看层级一览)

属性

Extra data of the node.

组件的额外数据。IDE内部使用。

_id: number

Unique identifier for the component.

组件的唯一标识。

_singleton: boolean

Whether the component is a singleton, meaning only one instance of this type of script can be added to the same node.

是否为单例,即同一个节点只能添加此类型的脚本一次。

cullingMode: number = Animator.CULLINGMODE_CULLCOMPLETELY

Culling mode,By default, when set to invisible, the animation will not play at all.

裁剪模式,默认为不可见时完全不播放动画。

owner: Node

Gets the owner Node to which the component belongs.

获取组件所属的 Node 节点。

runInEditor: boolean

Whether the script can run in the IDE environment.

是否可以在 IDE 环境中运行。

scriptPath: string

The path of the script file.

脚本文件的路径。

CULLINGMODE_ALWAYSANIMATE: number = 0

Culling mode: Always animate.

裁剪模式:始终播放动画。

CULLINGMODE_CULLCOMPLETELY: number = 2

Culling mode: Don't animate when not visible.

裁剪模式:不可见时完全不播放动画。

访问器

方法

  • 参数

    • name: string

      The name of the target animation state.

    • transitionDuration: number

      The transition duration, normalized to the current animation state's duration. Value should be between 0.0 and 1.0.

    • layerIndex: number = 0

      The layer index. Defaults to 0.

    • normalizedTime: number = Number.NEGATIVE_INFINITY

      The normalized start time of the animation. Defaults to Number.NEGATIVE_INFINITY.

    返回 void

    Performs a crossfade transition between the current animation state and the target animation state.

    在当前动画状态和目标动画状态之间进行融合过渡播放。

  • 返回 void

    Called after the component is added to a node. Unlike Awake, onAdded is called even if the node is not active.

    组件被添加到节点后调用,与 onAwake 不同的是,即使节点未激活也会调用 onAdded。

  • 返回 void

    Executed after the component is activated. At this point, all nodes and components have been created. This method is executed only once.

    组件被激活后执行,此时所有节点和组件均已创建完毕,此方法只执行一次。

  • 返回 void

    Resets the component's parameters to their default values. If this function is implemented, the component will be reset and automatically recycled for future use. If not reset, it will not be recycled for reuse.

    将组件的参数重置为默认值。如果实现了这个函数,组件将被重置并自动回收到对象池,方便下次复用。 如果没有重置,则不会进行回收复用。

  • 参数

    • name: string = null

      If null, plays the default animation; otherwise, plays the animation clip with the specified name.

    • layerIndex: number = 0

      The layer index. Defaults to 0.

    • normalizedTime: number = Number.NEGATIVE_INFINITY

      The normalized start time of the animation. Defaults to Number.NEGATIVE_INFINITY.

    返回 void

    Plays an animation.

    播放动画。

  • 参数

    • name: number

      The name or index of the parameter.

    • value: boolean

      The value to set.

    返回 void

    Sets the value of a boolean parameter.

    设置布尔类型参数的值。

  • 参数

    • name: string

      The name or index of the parameter.

    • value: boolean

      The value to set.

    返回 void

    Sets the value of a boolean parameter.

    设置布尔类型参数的值。

  • 参数

    • name: number

      The name or index of the parameter.

    • value: number

      The value to set.

    返回 void

    Sets the value of a number parameter.

    设置数值类型参数的值。

  • 参数

    • name: string

      The name or index of the parameter.

    • value: number

      The value to set.

    返回 void

    Sets the value of a number parameter.

    设置数值类型参数的值。