The BoneSlot class represents a slot in a skeletal animation that can display different skins or attachments.

BoneSlot 类代表骨骼动画中的一个插槽,可以显示不同的皮肤或附件。

构造函数

属性

attachmentName: string

The name of the current display data or attachment.

插槽显示数据数据的名称。

currDisplayData: SkinSlotDisplayData

The data corresponding to the display object.

显示对象对应的数据。

currSlotData: SlotData

The current slot data that the slot corresponds to.

当前插槽对应的数据。

currTexture: Texture

The current texture that the slot is displaying.

当前插槽显示的纹理。

displayIndex: number = -1

The index of the displayed skin.

显示皮肤的索引。

name: string

The name of the slot.

插槽的名称。

parent: string

The name of the bone to which the slot is attached.

插槽绑定的骨骼名称。

srcDisplayIndex: number = -1

The original index of the data.

原始数据的索引。

templet: Templet

The pointer to the template.

模板的指针。

type: string = "src"

Used to determine if it is the original object.

判断对象是否是原对象。

方法

  • 参数

    • graphics: GraphicsAni

      The Graphics object to draw the texture onto.

    • boneMatrixArray: any[]

      An array of matrices corresponding to bone transformations.

    • noUseSave: boolean = false

      If true, do not use the shared matrix object _tempResultMatrix; only set to true when calculating in real-time.

    • alpha: number = 1

      The alpha value for the texture being drawn, default is 1 (fully opaque).

    返回 void

    Draws the texture onto the Graphics object.

    将纹理绘制到 Graphics 对象上。

  • 参数

    • tarIndex: number

      The index of the display to be replaced.

    • newIndex: number

      The new index to replace with.

    返回 void

    Replaces the display by index.

    替换贴图索引。

  • 参数

    • tarName: string

      The name of the texture to be replaced.

    • newName: string

      The name of the new texture to replace with.

    返回 void

    Replaces the texture by name.

    替换贴图名。

  • 参数

    • index: number

      The index of the display object.

    返回 void

    Displays the object by index.

    指定显示对象。

  • 参数

    • name: string

      The name of the object to display.

    返回 void

    Displays the specified object by name.

    通过名字显示指定对象。

  • 参数

    • slotData: SlotData

      The slot data to display.

    • freshIndex: boolean = true

      Whether to reset the texture, default is true.

    返回 void

    Sets the slot data to be displayed.

    设置要显示的插槽数据。