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.

27 lines (26 loc) 758 B
import { NodeGeometryBlock } from "../../nodeGeometryBlock.js"; import type { NodeGeometryConnectionPoint } from "../../nodeGeometryBlockConnectionPoint.js"; /** * Defines a block used to generate a null geometry data */ export declare class NullBlock extends NodeGeometryBlock { /** * Create a new NullBlock * @param name defines the block name */ constructor(name: string); /** * Gets the current class name * @returns the class name */ getClassName(): string; /** * Gets the geometry output component */ get geometry(): NodeGeometryConnectionPoint; /** * Gets the vector output component */ get vector(): NodeGeometryConnectionPoint; protected _buildBlock(): void; }