SpineVirtualMesh class for handling Spine skeleton mesh rendering.

SpineVirtualMesh 类用于处理 Spine 骨骼网格渲染。

层级 (查看层级一览)

构造函数

属性

Render element for 2D rendering.

用于2D渲染的渲染元素。

Geometry element for rendering.

用于渲染的几何元素。

indexArray: Uint16Array

Shared index array for all instances.

所有实例共享的索引数组。

maxVertex: number = 10922

Maximum number of vertices. Limited by 64K indexbuffer constraint.

最大顶点数。受64K索引缓冲区限制。

vertexArray: Float32Array

Shared vertex array for all instances.

所有实例共享的顶点数组。

vertexSize: number = 8

Size of each vertex in the vertex array.

顶点数组中每个顶点的大小。

vertexSize_TwoColor: number = 12

Size of each vertex in the vertex array with Two Color.

双顶点色模式顶点数组中每个顶点的大小。

访问器

方法

  • 参数

    • vertices: ArrayLike<number>

      Array of vertex positions.

    • verticesLength: number

      Number of vertices to append.

    • indices: number[]

      Array of indices.

    • indicesLength: number

      Number of indices to append.

    • finalColor: Color

      Color to apply to vertices.

    • uvs: ArrayLike<number>

      Array of UV coordinates.

    返回 void

    Append vertices to the mesh.

    向网格添加顶点。

  • 参数

    • vertices: ArrayLike<number>

      Array of vertex data.

    • indices: ArrayLike<number>

      Array of index data.

    返回 void

    Append clipped vertices and indices.

    裁剪后的顶点和索引。

  • 参数

    • verticesLength: number

      Number of vertices to be appended.

    • indicesLength: number

      Number of indices to be appended.

    返回 boolean

    True if the mesh can append, false otherwise.

    Check if the mesh can append more vertices and indices.

    检查网格是否能够添加更多的顶点和索引。

  • 参数

    • vertices: Float32Array

      Vertex data array.

    • vblength: number

      Number of vertices.

    • indices: Uint16Array

      Index data array.

    • iblength: number

      Number of indices.

    返回 void

    Draw the mesh using provided vertex and index data.

    使用提供的顶点和索引数据绘制网格。