@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.
33 lines (32 loc) • 940 B
TypeScript
import { NodeParticleBlock } from "../nodeParticleBlock.js";
import type { NodeParticleConnectionPoint } from "../nodeParticleBlockConnectionPoint.js";
/**
* Block used to define a gradient entry for a gradient block
*/
export declare class ParticleGradientValueBlock extends NodeParticleBlock {
/**
* Gets or sets the epsilon value used for comparison
*/
reference: number;
/**
* Creates a new ParticleGradientEntryBlock
* @param name defines the block name
*/
constructor(name: string);
/**
* Gets the current class name
* @returns the class name
*/
getClassName(): string;
/**
* Gets the value operand input component
*/
get value(): NodeParticleConnectionPoint;
/**
* Gets the output component
*/
get output(): NodeParticleConnectionPoint;
_build(): void;
serialize(): any;
_deserialize(serializationObject: any): void;
}