Files
GDevelop/GDevelop.js/types/gdmodel3danimation.js
D8H 20c3d62c90 Add the support for animations on 3D models (#5302)
- Breaking change: fix 3D models that were mirrored on Y axis.
  - In case some models look upside-down, they can be fixed by adding 180° to the "Rotation around Y axis" property.
- Handle custom origin and center.
2023-06-13 12:42:46 +02:00

12 lines
338 B
JavaScript

// Automatically generated by GDevelop.js/scripts/generate-types.js
declare class gdModel3DAnimation {
constructor(): void;
setName(name: string): void;
getName(): string;
setSource(name: string): void;
getSource(): string;
setShouldLoop(shouldLoop: boolean): void;
shouldLoop(): boolean;
delete(): void;
ptr: number;
};