mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-08-27 03:01:28 -04:00
2ca593ba2b
Don't show in changelog
25 lines
926 B
JavaScript
25 lines
926 B
JavaScript
// Automatically generated by GDevelop.js/scripts/generate-types.js
|
|
declare class gdEventsFunction {
|
|
static Action: 0;
|
|
static Condition: 1;
|
|
static Expression: 2;
|
|
static StringExpression: 3;
|
|
constructor(): void;
|
|
setDescription(description: string): gdEventsFunction;
|
|
getDescription(): string;
|
|
setName(name: string): gdEventsFunction;
|
|
getName(): string;
|
|
setFullName(fullName: string): gdEventsFunction;
|
|
getFullName(): string;
|
|
setSentence(sentence: string): gdEventsFunction;
|
|
getSentence(): string;
|
|
setFunctionType(type: EventsFunction_FunctionType): gdEventsFunction;
|
|
getFunctionType(): EventsFunction_FunctionType;
|
|
getEvents(): gdEventsList;
|
|
getParameters(): gdVectorParameterMetadata;
|
|
getObjectGroups(): gdObjectGroupsContainer;
|
|
serializeTo(element: gdSerializerElement): void;
|
|
unserializeFrom(project: gdProject, element: gdSerializerElement): void;
|
|
delete(): void;
|
|
ptr: number;
|
|
}; |