UNPKG

@babylonjs/core

Version:

Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.

12 lines (11 loc) 606 B
import type { Nullable } from "../../types.js"; import type { ParticleSystem } from "../particleSystem.js"; import { NodeParticleSystemSet } from "./nodeParticleSystemSet.js"; /** * Converts a ParticleSystem to a NodeParticleSystemSet. * @param name The name of the node particle system set. * @param particleSystems The particle systems to convert. * @returns The converted node particle system set or null if conversion failed. * #0K3AQ2#3627 */ export declare function ConvertToNodeParticleSystemSetAsync(name: string, particleSystems: ParticleSystem[]): Promise<Nullable<NodeParticleSystemSet>>;