You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Sets the value of the attribute specified by attribute_name.
1477
+
*/
1478
+
setattr(attrname: string, ...value: any[]): void;
1447
1479
1448
1480
/**
1449
1481
* Sends message to the patcher followed by any additional arguments (..anything) provided.
@@ -1622,7 +1654,7 @@ declare class Task {
1622
1654
* Repeat a task function. The optional number argument specifies the number of repetitions. If the argument is not present or is negative, the task repeats until it is cancelled. The optional
1623
1655
* initialdelay argument sets the delay in milliseconds until the first iteration. See documentation for an example.
1624
1656
*/
1625
-
repeat(times: number): void;
1657
+
repeat(n?: number,initialdelay?: number): void;
1626
1658
1627
1659
/**
1628
1660
* Run the task once, right now. Equivalent to calling the task function with its arguments.
@@ -1818,7 +1850,7 @@ declare function refresh(): void;
* When autosketch is set to 1, the drawing commands will immediately be drawn without waiting a drawing execution command. While this is convenient, it is less flexible than working with
0 commit comments