Version: 2021.1
言語: 日本語

説明

Delegate that you can use to invoke custom code at the start of RenderPipeline.Render.

This delegate is replaced by RenderPipelineManager.beginContextRendering. It is supported and documented for backwards compatibility only.

When Unity calls RenderPipeline.BeginFrameRendering, it executes the methods in this delegate's invocation list. If you are writing a custom Scriptable Render Pipeline, you can call this method at the start of RenderPipeline.Render.

Using this delegate causes heap allocations. Using RenderPipeline.BeginContextRendering and the RenderPipelineManager.beginContextRendering delegate provide the same functionality, but without unnecessary heap allocations. You should use them instead.

See Also: RenderPipeline.BeginFrameRendering, RenderPipeline.EndFrameRendering, RenderPipelineManager.endFrameRendering