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
| Field | Type | Required | Description |
|---|---|---|---|
millis | int | ✓ | The amount of time (in milliseconds) that the app should wait before executing the effect. |
effect | Effect | ✓ | The effect to be executed after the given amount of milliseconds. |