Skip to main content

Delayed

The Delayed effect is used to delay the execution of the child effect by a given amount of time (in milliseconds).

JSON Format

{
"type": "delayed",
"millis": ...,
"effect": ...
}

Fields

FieldTypeRequiredDescription
millisintThe amount of time (in milliseconds) that the app should wait before executing the effect.
effectEffectThe effect to be executed after the given amount of milliseconds.