RepeatAction

DebugActions. RepeatAction

An action 'repeat' that can run a set of actions a number of times

Constructor

new RepeatAction()

Source:
Example
// Runs the action "someAction" 10 times
{
    "repeat": {
        iterations: 10,
        actions: [
            "someAction"
        ]
    }
}