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.

15 lines (14 loc) 373 B
import type { NodeParticleConnectionPoint } from "../../nodeParticleBlockConnectionPoint.js"; /** * Interface for shape blocks in the particle system. */ export interface IShapeBlock { /** * Gets the particle component */ particle: NodeParticleConnectionPoint; /** * Gets the output component */ output: NodeParticleConnectionPoint; }