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.

66 lines (65 loc) 2.21 kB
import { NodeGeometryBlock } from "../../nodeGeometryBlock.js"; import type { NodeGeometryConnectionPoint } from "../../nodeGeometryBlockConnectionPoint.js"; import type { NodeGeometryBuildState } from "../../nodeGeometryBuildState.js"; import type { INodeGeometryExecutionContext } from "../../Interfaces/nodeGeometryExecutionContext.js"; /** * Block used to set texture coordinates for a geometry */ export declare class SetUVsBlock extends NodeGeometryBlock implements INodeGeometryExecutionContext { private _vertexData; private _currentIndex; /** * Gets or sets a boolean indicating that this block can evaluate context * Build performance is improved when this value is set to false as the system will cache values instead of reevaluating everything per context change */ evaluateContext: boolean; /** * Gets or sets a value indicating which UV to set */ textureCoordinateIndex: number; /** * Create a new SetUVsBlock * @param name defines the block name */ constructor(name: string); /** * Gets the current index in the current flow * @returns the current index */ getExecutionIndex(): number; /** * Gets the current loop index in the current flow * @returns the current loop index */ getExecutionLoopIndex(): number; /** * Gets the current face index in the current flow * @returns the current face index */ getExecutionFaceIndex(): number; /** * Gets the current class name * @returns the class name */ getClassName(): string; /** * Gets the geometry input component */ get geometry(): NodeGeometryConnectionPoint; /** * Gets the uvs input component */ get uvs(): NodeGeometryConnectionPoint; /** * Gets the geometry output component */ get output(): NodeGeometryConnectionPoint; protected _buildBlock(state: NodeGeometryBuildState): void; protected _dumpPropertiesCode(): string; /** * Serializes this block in a JSON representation * @returns the serialized block object */ serialize(): any; _deserialize(serializationObject: any): void; }