The VertexBuffer3D class is used to create vertex buffers. To create an instance of VertexBuffer3D, use LayaGL.RenderOBJCreate.createIndexBuffer3D.

VertexBuffer3D 类用于创建顶点缓冲。要创建 VertexBuffer3D 的实例,请使用 LayaGL.RenderOBJCreate.createIndexBuffer3D

构造函数

属性

_buffer: Float32Array | Uint16Array | Uint8Array | Uint32Array
_byteLength: number
bufferUsage: BufferUsage

访问器

方法

  • 参数

    • buffer: ArrayBuffer

      The data to set.

    • bufferOffset: number = 0

      The offset within the vertex buffer, in bytes.

    • dataStartIndex: number = 0

      The starting index within the data, in bytes.

    • dataCount: number = Number.MAX_SAFE_INTEGER

      The number of bytes to set.

    返回 void

    Sets the data for the vertex buffer.

    设置顶点缓冲区的数据。