mirror of
https://github.com/Heretek-AI/GDevelop.git
synced 2026-07-21 01:25:32 -04:00
2ca593ba2b
Don't show in changelog
15 lines
503 B
JavaScript
15 lines
503 B
JavaScript
// Automatically generated by GDevelop.js/scripts/generate-types.js
|
|
declare class gdAnimation {
|
|
constructor(): void;
|
|
setName(name: string): void;
|
|
getName(): string;
|
|
setDirectionsCount(count: number): void;
|
|
getDirectionsCount(): number;
|
|
getDirection(index: number): gdDirection;
|
|
setDirection(direction: gdDirection, index: number): void;
|
|
hasNoDirections(): boolean;
|
|
useMultipleDirections(): boolean;
|
|
setUseMultipleDirections(enable: boolean): void;
|
|
delete(): void;
|
|
ptr: number;
|
|
}; |