Version: 2022.1
LanguageEnglish
  • C#

BatchCullingOutputDrawCommands.drawRanges

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public BatchDrawRange* drawRanges;

Description

Contains filtering settings for draw commands, which tell Unity in which conditions it should render a given draw command.

Each draw range covers a continuous range of draw commands in the BatchCullingOutputDrawCommands.drawCommands array, and the settings in the BatchDrawRange struct apply to all of them. You must populate this with at least one draw range, but you can use more if necessary.

The culling callback must allocate the memory for this command using UnsafeUtility.Malloc with the Allocator.TempJob parameter. Unity releases this memory when it finishes rendering the draw commands.