The AnimatorState class is used to create animation states.

AnimatorState 类用于创建动画状态。

层级 (查看层级一览)

实现

  • IClone

构造函数

属性

clipEnd: number = 1.0

End time of animation playback.

动画播放的结束时间。

clipStart: number = 0.0

Start time of animation playback.

动画播放的起始时间。

curTransition: AnimatorTransition

Current transition content.

当前过渡内容。

cycleOffset: number = 0

Play on awake start offset.

唤醒时播放的起始偏移量。

name: string

Name of the animator state.

动画状态的名称。

speed: number = 1.0

Animation playback speed. 1.0 is normal playback speed.

动画播放速度。1.0为正常播放速度。

EVENT_OnStateEnter: string = "OnStartEnter"

Animation event called when the state is entered.

动画事件,在进入状态时调用。

EVENT_OnStateExit: string = "OnStateExit"

Animation event called when the state is exited.

动画事件,在离开状态时调用。

EVENT_OnStateLoop: string = 'OnStateLoop'

Animation event called when a loop is completed.

动画事件,在循环完成时调用。

EVENT_OnStateUpdate: string = "OnStateUpdate"

Animation event called when the state is updated.

动画事件,在更新状态时调用。

访问器

方法

  • 参数

    • type: string

      The type of event.

    • 可选data: any

      (Optional) Data to pass to the callback. If multiple parameters p1, p2, p3, ... need to be passed, use an array structure such as [p1, p2, p3, ...]. If a single parameter p needs to be passed and p is an array, use a structure such as [p]. For other single parameters p, you can directly pass parameter p. If data is Event.EMPTY, it means passing an Event object to the callback function. Note that it is not passing Event.TEMP, but an independent Event object.

    返回 boolean

    True if there are listeners for this event type, false otherwise.

    Dispatch an event.

    派发事件。

  • 参数

    • type: string

      The type of event.

    返回 boolean

    True if a listener of the specified type is registered, false otherwise.

    Check if the EventDispatcher object has any listeners registered for a specific type of event.

    检查 EventDispatcher 对象是否为特定事件类型注册了任何侦听器。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知。

  • 参数

    • type: string

      The type of event.

    • listener: Function

      The listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 参数

    • type: string

      The type of event.

    • caller: any

      The execution scope of the event listener function.

    • listener: Function

      The listener function.

    • 可选args: any[]

      (Optional) The callback parameters of the event listener function.

    返回 EventDispatcher

    This EventDispatcher object.

    Register an event listener object with the EventDispatcher object so that the listener receives event notifications. This event listener responds once and is automatically removed after the first call.

    使用 EventDispatcher 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。