@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.
19 lines (18 loc) • 530 B
TypeScript
import type { NodeMaterialBuildState } from "../nodeMaterialBuildState.js";
import { BaseMathBlock } from "./baseMathBlock.js";
/**
* Block used to multiply 2 values
*/
export declare class MultiplyBlock extends BaseMathBlock {
/**
* Creates a new MultiplyBlock
* @param name defines the block name
*/
constructor(name: string);
/**
* Gets the current class name
* @returns the class name
*/
getClassName(): string;
protected _buildBlock(state: NodeMaterialBuildState): this;
}