Skip to content

Latest commit

 

History

History
52 lines (29 loc) · 1.17 KB

control.md

File metadata and controls

52 lines (29 loc) · 1.17 KB

Control

Repeat:

Repeats the blocks inside for the specified number.

Repeat

Forever:

Repeats the blocks inside forever

Forever

{% hint style="danger" %} Must be used with a stop block or the app will crash. {% endhint %}

Stop:

Stops a forever and repeat block

stop

If then:

If the specified value is true, the blocks inside will run.

if then

{% hint style="info" %} Usually used with blocks from the Operator tab. {% endhint %}

If then/else:

If the specified value is true, the blocks in the top half will run. Else, the blocks in the bottom half will run.

If then/else

{% hint style="info" %} Usually used with blocks from the Operator tab. {% endhint %}