Files
Florian Rival 6bb56c6e5b Add support for local variables for loop events (While, Repeat, For Each, For Each Child Variable) and loop counter variable (#8273)
- "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.
2026-02-15 16:14:04 +01:00

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;
};