The CommandBuffer Class used to create command buffer

CommandBuffer 类用于创建命令缓冲区。

属性

instance: CommandBuffer

访问器

方法

  • 参数

    • source: BaseTexture

      The source texture. If null, the previous render result is used as the original texture.

    • dest: RenderTexture

      The destination texture. If null, it renders directly to the final canvas.

    • offsetScale: Vector4 = null

      Offset scaling

    • shader: Shader3D = null

      The shader. If null, the internal copy shader is used without any processing.

    • shaderData: ShaderData = null

      The shader data. If null, only the sourceTexture is accepted.

    • subShader: number = 0

      The subShader index, defaults to 0.

    返回 void

    Adds a fullscreen quad rendering command to the command buffer.

    向命令缓冲区添加一条通过全屏四边形渲染命令。

  • 参数

    • source: BaseTexture

      The source texture. If null, the previous render result is used as the original texture.

    • dest: RenderTexture

      The destination texture. If null, it renders directly to the final canvas.

    • offsetScale: Vector4 = null

      Offset scaling.

    • material: Material = null

      The material.

    • subShader: number = 0

      The shader index.

    返回 void

    Add a command to render the source texture to the target texture through a full screen quadrilateral.

    添加一条通过全屏四边形将源纹理渲染到目标渲染纹理指令。

  • 参数

    • source: BaseTexture

      The source texture.

    • dest: RenderTexture

      The destination texture.

    • offsetScale: Vector4 = null

      Offset scaling.

    • shader: Shader3D = null

      The shader. If null, the internal copy shader is used without any processing.

    • shaderData: ShaderData = null

      The shader data. If null, only the sourceTexture is accepted.

    • subShader: number = 0

      The subShader index, defaults to 0.

    返回 void

    Add a command to render the source texture to the target texture through full screen triangles.

    添加一条通过全屏三角形将源纹理渲染到目标渲染纹理指令。

  • 参数

    • mesh: Mesh

      The original mesh information.

    • matrix: Matrix4x4

      The world matrix of the mesh.

    • material: Material

      The material applied to the mesh.

    • submeshIndex: number

      The index of the submesh.

    • subShaderIndex: number

      The index of the sub-shader, generally 0.

    返回 void

    Renders a Mesh.

    渲染一个网格。

  • 参数

    • mesh: Mesh

      The original mesh information.

    • subMeshIndex: number = 0

      The index of the mesh.

    • matrixs: Matrix4x4[]

      An array of world matrices for rendering, describing the position of each Mesh to be rendered. If null, no world matrix buffer will be created or updated.

    • material: Material

      The material used for rendering.

    • subShaderIndex: number = 0

      The shader index of the rendering material.

    • instanceProperty: MaterialInstancePropertyBlock

      Custom properties for the instance.

    • drawnums: number

      The number of instances to render.

    返回 any

    Renders a Mesh using instanced rendering for dynamic batching.

    使用实例化渲染动态合批方式渲染网格。

  • 参数

    • renderTexture: RenderTexture

      The render target texture.

    • clearColor: boolean

      Whether to clear the color buffer.

    • clearDepth: boolean

      Whether to clear the depth buffer.

    • backgroundColor: Color = Color.BLACK

      The background color when clearing. Defaults to black.

    • depth: number = 1

      The depth value when clearing. Defaults to 1.

    返回 void

    Sets the render target for the command buffer.

    设置命令缓冲区的渲染目标。