Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GBuffer3

Deferred shading G-buffer #3 (typically emission/lighting).
Read time 1 minuteLast updated 5 days ago

Definition

GBuffer3 = 13

Remarks

Built-in deferred shaders put ambient & emission into RGB channels of this texture. And then the lights are also added there during lighting pass. But your own custom shaders could be outputting anything there of course.
Note that GBuffer3 render texture is not created when the current camera is using HDR; instead emission/lighting is rendered directly into a camera's target texture. You'll need to use BuiltinRenderTextureType.CameraTarget render texture type to handle the HDR camera case.
Additional Resources: CommandBuffer.