Method SetPendingBufferList
SetPendingBufferList(ref UnsafeList<EntityCommandBuffer>)
Sets the list of command buffers to play back when this system updates.
Declaration
void SetPendingBufferList(ref UnsafeList<EntityCommandBuffer> buffers)
Parameters
Type | Name | Description |
---|---|---|
UnsafeList<EntityCommandBuffer> | buffers | The list of buffers to play back. This list replaces any existing pending command buffers on this system. |
Remarks
This method is only intended for internal use, but must be in the public API due to language
restrictions. Command buffers created with CreateCommandBuffer
are automatically added to
the system's list of pending buffers to play back.