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.

11 lines (10 loc) 598 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 particleSystemsList The particle systems to convert. * @returns The converted node particle system set or null if conversion failed. */ export declare function ConvertToNodeParticleSystemSetAsync(name: string, particleSystemsList: ParticleSystem[]): Promise<Nullable<NodeParticleSystemSet>>;