The PostProcessRenderContext class is used to create a post-processing rendering context.

PostProcessRenderContext 类用于创建后期处理渲染上下文。

构造函数

属性

camera: Camera = null

The rendering camera.

渲染相机。

command: CommandBuffer = null

The post-processing command buffer.

后期处理指令流。

compositeShaderData: ShaderData = null

The composite shader data.

合成着色器数据。

deferredReleaseTextures: RenderTexture[] = []

Temporary texture array. You can put created textures here or select an RT to use from here to save memory.

临时纹理数组。可以将创建的纹理放入此数组,也可以从这里选取要用的 RT 来节省显存。

destination: RenderTexture = null

The RenderTexture where the processed result should be drawn to.

需要将处理后的结果画入此 RenderTexture。

indirectTarget: RenderTexture = null

forward effect target

上个后期处理的结果

source: RenderTexture = null

The original RenderTexture that is rendered to initially. Do not modify this RT.

原始渲染 RenderTexture (RT),禁止改变此 RT。

方法

  • 参数

    • width: number

      The width of the RenderTexture.

    • height: number

      The height of the RenderTexture.

    • colorFormat: RenderTargetFormat

      The color format of the RenderTexture.

    • depthFormat: RenderTargetFormat

      The depth format of the RenderTexture.

    • mipmap: boolean = false

      Whether to generate mipmaps.

    • multiSamples: number = 1

      The number of multisamples.

    • depthTexture: boolean = false

      Whether to generate a depth texture.

    • sRGB: boolean = false

      Whether the RenderTexture is in sRGB color space.

    返回 RenderTexture

    The selected RenderTexture or null if no match is found.

    Selects an RT from recycled RTs to save memory.

    从回收的 RT 中选择一个 RT 用来节省内存。