BBMOD_ERenderCommand.BeginConditionalBlock

A member defined in BBMOD_ERenderCommand.gml

Description

Marks the beginning of a conditional block. Commands within this block are executed only if the last command was successfully executed.

Example

renderQueue.apply_material(material, vertexFormat)
   .begin_conditional_block()
   // Commands here will be executed only if the material was applied...
   .end_conditional_block();

See also

BBMOD_ERenderCommand.EndConditionalBlock

Do you find this page helpful?

Copyright © 2024, BlueBurn. Built on January 21, 2024 using GMDoc.