@babylonjs/node-particle-editor 9.4.0 → 9.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -59,6 +59,18 @@ export class NodeParticleEditor {
|
|
|
59
59
|
static Show(options: INodeEditorOptions): void;
|
|
60
60
|
}
|
|
61
61
|
|
|
62
|
+
}
|
|
63
|
+
declare module "@babylonjs/node-particle-editor/main" {
|
|
64
|
+
/**
|
|
65
|
+
* Vite dev server entry point for the Node Particle Editor.
|
|
66
|
+
*
|
|
67
|
+
* Uses dynamic import so the editor module graph loads only after
|
|
68
|
+
* the CDN bootstrap has set window.BABYLON.
|
|
69
|
+
*/
|
|
70
|
+
type ShowArgs = Parameters<(typeof import("@babylonjs/node-particle-editor/nodeParticleEditor"))["NodeParticleEditor"]["Show"]>;
|
|
71
|
+
function StartEditor(args: ShowArgs): Promise<void>;
|
|
72
|
+
const Win: Record<string, unknown>;
|
|
73
|
+
|
|
62
74
|
}
|
|
63
75
|
declare module "@babylonjs/node-particle-editor/index" {
|
|
64
76
|
export * from "@babylonjs/node-particle-editor/nodeParticleEditor";
|