Animation template class

动画模板类

层级 (查看层级一览)

属性

_id: number = 0
aniSectionDic: any = {}
bindBoneBoneSlotDic: any = {}

Dictionary for binding slot data.

绑定插槽数据的字典。

boneSlotArray: any[] = []

Array for storing slot data.

存放插槽数据的数组。

boneSlotDic: any = {}

Dictionary for storing slot data.

存放插槽数据的字典。

deformAniArr: any[] = []

Vertex animation data array.

顶点动画数据数组。

destroyedImmediately: boolean

Whether to delete the resource immediately when the reference count is 0.

是否在引用计数为0的时候立马删除他

drawOrderAniArr: any[] = []

Render order animation data array.

渲染顺序动画数据数组。

eventAniArr: any[] = []

Event animation data array.

事件动画数据数组。

ikArr: any[] = []

IK (Inverse Kinematics) data array.

IK数据数组。

isParseFail: boolean = false

Indicates whether parsing has failed.

是否解析失败。

lock?: boolean

Whether to lock the resource, if true, the resource cannot be automatically released.

是否加锁,如果true为不能使用自动释放机制。

mBoneArr: Bone[] = []

Array of all bones in the skeleton

骨骼中所有骨骼的数组

mRootBone: Bone

Root bone of the skeleton

骨骼的根骨骼

name?: string

The name of the resource.

资源名称。

pathArr: any[] = []

Path data array.

path数据数组。

rate: number = 30

The frame rate of the animation

动画的帧率

skinDataArray: any[] = []

Skin data array.

皮肤数据数组。

skinDic: any = {}

Dictionary for skin data.

皮肤的字典数据。

skinSlotDisplayDataArr: SkinSlotDisplayData[] = []

Actual display object list for destruction purposes.

实际显示对象列表,用于销毁用。

srcBoneMatrixArr: any[] = []

Stores the original bone information.

存放原始骨骼信息。

subTextureDic: Record<string, Texture> = {}

Dictionary for storing texture data.

存放纹理数据的字典。

tfArr: any[] = []

Transform data array.

transform数据数组。

url: string

The URL of the resource.

获取资源的URL地址。

uuid: string

The UUID of the resource.

获取资源的UUID。

yReverseMatrix: Matrix

The reverse matrix, some bone animations need to be reversed to be displayed correctly.

反转矩阵,有些骨骼动画需要反转才能正确显示。

DEBUG: boolean = false

Whether the debug mode is enabled.

是否开启调试模式。

interpolation: any[] = ...

Interpolation function

插值函数

访问器

  • get id(): number

    返回 number

    Unique identifier ID, usually used for identification.

    唯一标识ID,通常用于识别。

  • get obsolute(): boolean

    返回 boolean

    If a cached resource observer is set to true, then:

      1. getRes will still return this resource;
      1. next time loading will ignore this cached resource and reload it.

    如果设置一个已缓存的资源obsolute为true,则

    • 1)getRes仍然可以返回这个资源;
    • 2)下次加载时会忽略这个缓存而去重新加载。。
  • set obsolute(value: boolean): void

    参数

    • value: boolean

    返回 void

方法

  • 参数

    • count: number = 1

      The amount by which to increment the reference count, default is 1.

    返回 void

    Increments the reference count of the resource by the specified amount.

    按指定数量增加资源的引用计数。

  • 参数

    • count: number = 1

      The amount by which to decrement the reference count, default is 1.

    返回 void

    Decrements the reference count of the resource by the specified amount. If the reference count reaches zero and certain conditions are met, the resource may be destroyed.

    按指定数量减少资源的引用计数。如果引用计数达到零并且满足特定条件,资源可能会被销毁。

  • 参数

    • url: string

      The URL used to create the resource.

    • 可选uuid: string

      The optional UUID of the resource.

    返回 void

    Sets the URL and UUID used to create this resource.

    设置用于创建此资源的 URL 和 UUID。

  • 参数

    • aniMode: number = 0

      The animation mode: 0 for no costume change support, 1 or 2 for costume change support.

    返回 Skeleton

    The created instance.

    Create skeletal animation.

    • 0: Use the template's buffer data, which cannot be modified. (Low memory overhead, low computation overhead, does not support costume changes)
    • 1: Use the animation's own buffer. Each animation will have its own buffer, which is quite memory-intensive. (High memory overhead, low computation overhead, supports costume changes)
    • 2: Use a dynamic approach for real-time drawing. (Low memory overhead, high computation overhead, supports costume changes, not recommended)

    创建骨骼动画。

    • 0: 使用模板缓冲的数据,不允许修改。(内存开销小,计算开销小,不支持换装)
    • 1: 使用动画自己的缓冲区,每个动画都会有自己的缓冲区,相当耗费内存。(内存开销大,计算开销小,支持换装)
    • 2: 使用动态方式进行实时绘制。(内存开销小,计算开销大,支持换装,不建议使用)
  • 参数

    • aniIndex: number

      The index of the animation data to delete.

    返回 void

    Deletes animation data at the specified index.

    删除指定索引的动画数据。

  • 参数

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

    派发事件。

  • 参数

    • key: any

      The key associated with the data to retrieve.

    • cacheDatas: any

      The cache data storage.

    • aniIndex: number

      The index of the animation.

    • frameIndex: number

      The index of the frame to retrieve data from.

    返回 Float32Array

    The Float32Array containing the animation data, or null if not found.

    Retrieve animation data with caching mechanism.

    使用缓存机制获取动画数据。

  • 参数

    • index: number

      The index of the animation.

    返回 string

    The name of the animation, or null if not found.

    Retrieves the name of an animation based on its index.

    通过索引获取动画名称。

  • 参数

    • aniIndex: number

      The index of the animation.

    • name: string

      The name of the bone to retrieve.

    返回 number

    The index of the bone.

    Retrieve the index of a bone by its name within an animation.

    通过名称获取动画中的骨骼索引。

  • 参数

    • nodeframes: KeyFramesContent[]

      The keyframe data for the current bone.

    • nodeid: number

      The bone ID, used for updating the _boneCurKeyFrm.

    • tm: number

      The current time in the animation.

    返回 number

    The index of the keyframe that corresponds to the current time.

    Calculate which keyframe corresponds to the current time.

    • There is an issue with the last frame. For example, if the time of the second to last frame is 0.033ms, the next two frames are very close together. When the actual last frame is given, the time calculated based on the frame number actually falls on the second to last frame. Using accumulated time consistent with AnimationPlayer will resolve this issue.

    计算当前时间应该对应关键帧的哪一帧。

    • 最后一帧有问题,例如倒数第二帧时间是0.033ms,则后两帧非常靠近,当实际给最后一帧的时候,根据帧数计算出的时间实际上落在倒数第二帧使用与AnimationPlayer一致的累积时间就行
  • 参数

    • aniIndex: number

      The index of the animation to retrieve node information from.

    • playCurTime: number

      The current play time of the animation in milliseconds.

    返回 Uint32Array

    A Uint32Array containing the current frame index for each node.

    Get the current frame index for each node in the specified animation.

    获取指定动画中每个节点的当前帧索引。

  • 参数

    • aniIndex: number

      The index of the animation.

    • originalData: Float32Array

      A Float32Array to be filled with the retrieved animation data. This array is modified in-place.

    • nodesFrameIndices: any[]

      An array containing frame indices for each node (Note: This parameter is not used in the current implementation).

    • frameIndex: number

      The index of the frame to retrieve data for (Note: This parameter is not used in the current implementation).

    • playCurTime: number

      The current play time in the animation (in milliseconds).

    返回 void

    Retrieve and fill the original animation data for a specific frame and time.

    获取并填充特定帧和时间的原始动画数据。

  • 参数

    • aniIndex: number

      The index of the animation to retrieve data from.

    • originalData: Float32Array

      A Float32Array to be filled with the retrieved animation data. This array is modified in-place.

    • playCurTime: number

      The current play time of the animation in milliseconds.

    返回 void

    Retrieve and fill the original animation data at a specific time for the given animation.

    获取并填充指定动画在特定时间的原始动画数据。

  • 参数

    • skinName: string

      The name of the skin.

    返回 number

    The index of the skin, or -1 if not found.

    Retrieves the index of a skin based on its name.

    通过皮肤名称获取皮肤索引。

  • 参数

    • 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 对象是否为特定事件类型注册了任何侦听器。

  • 参数

    • url: string

      The URL to check against the resource's creation URL.

    返回 boolean

    True if the resource is created from the specified URL, otherwise false.

    Checks if the resource is created from the specified URL.

    检查资源是否从指定的 URL 创建。

  • 参数

    • 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 对象注册指定类型的事件侦听器对象,以使侦听器能够接收事件通知,此侦听事件响应一次后自动移除。

  • 参数

    • key: any

      The key associated with the data to set.

    • cacheDatas: any[]

      The array of cache data storages.

    • aniIndex: number

      The index of the animation.

    • frameIndex: number

      The index of the frame to set data to.

    • data: any

      The data to set.

    返回 void

    Set animation data with caching mechanism.

    设置动画数据并使用缓存机制。