Files
GDevelop/GDevelop.js/types/gdelseevent.js
Florian Rival 17443587b9 Add Else event (#8216)
* This is not finished yet:
  - Documentation needs to be written.
  - Menu item (and shortcut?) to quickly toggle between a standard event and a else event must be added so it's easy to switch from one to the other.
  - Design must be adapted to make it clearer that the else event is "linked" to the previous one and is not run if the previous event is run.
2026-02-07 17:15:01 +01:00

8 lines
249 B
JavaScript

// Automatically generated by GDevelop.js/scripts/generate-types.js
declare class gdElseEvent extends gdBaseEvent {
constructor(): void;
getConditions(): gdInstructionsList;
getActions(): gdInstructionsList;
delete(): void;
ptr: number;
};