sleep()

Задает задержку выполнения текущего скрипта на задданный интервал в миллисекундах
await sleep(milliseconds:int)

Parameters

Name Type Действие Значение по умолчанию
milliseconds int Delay interval in milliseconds.

Description

Used in the method onUpdate.

Example

// We set the script execution charge for 2 seconds.
await this.sleep(2000);