mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-21 01:25:32 -04:00
6bb56c6e5b
- "For Each Child Variable" now also properly support choosing local variables for the variable to iterate on, and for the variable where to store the child and the optional variable where to store the name. - The loop counter starts from 0 and is automatically increased by 1 each time the event is repeated.
11 lines
380 B
JavaScript
11 lines
380 B
JavaScript
// Automatically generated by GDevelop.js/scripts/generate-types.js
|
|
declare class gdWhileEvent extends gdBaseEvent {
|
|
constructor(): void;
|
|
getConditions(): gdInstructionsList;
|
|
getWhileConditions(): gdInstructionsList;
|
|
getActions(): gdInstructionsList;
|
|
getLoopIndexVariableName(): string;
|
|
setLoopIndexVariableName(name: string): void;
|
|
delete(): void;
|
|
ptr: number;
|
|
}; |