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.

32 lines (31 loc) 909 B
import { NodeParticleBlock } from "../nodeParticleBlock.js"; import type { NodeParticleConnectionPoint } from "../nodeParticleBlockConnectionPoint.js"; /** * Block used to define a list of gradient entries */ export declare class ParticleGradientBlock extends NodeParticleBlock { private _entryCount; /** * Creates a new ParticleGradientBlock * @param name defines the block name */ constructor(name: string); private _extend; private _manageExtendedInputs; /** * Gets the current class name * @returns the class name */ getClassName(): string; /** * Gets the gradient operand input component */ get gradient(): NodeParticleConnectionPoint; /** * Gets the output component */ get output(): NodeParticleConnectionPoint; _build(): void; serialize(): any; _deserialize(serializationObject: any): void; }