@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.
15 lines (14 loc) • 405 B
TypeScript
import { type Nullable, type AbstractMesh, type IParticleSystem } from "../index.js";
/**
* Structure used by the frame graph to reference objects.
*/
export declare class FrameGraphObjectList {
/**
* The meshes in the object list.
*/
meshes: Nullable<AbstractMesh[]>;
/**
* The particle systems in the object list.
*/
particleSystems: Nullable<IParticleSystem[]>;
}