polygonjs-engine
Version:
node-based webgl 3D engine https://polygonjs.com
21 lines (20 loc) • 968 B
TypeScript
import { TypedSopNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { CoreGroup } from '../../../core/geometry/Group';
declare class HeightMapSopParamsConfig extends NodeParamsConfig {
/** @param texture node to load the heightmap from */
texture: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.OPERATOR_PATH>;
/** @param values multiplier */
mult: import("../utils/params/ParamsConfig").ParamTemplate<import("../../poly/ParamType").ParamType.FLOAT>;
}
export declare class HeightMapSopNode extends TypedSopNode<HeightMapSopParamsConfig> {
params_config: HeightMapSopParamsConfig;
static type(): string;
initializeNode(): void;
cook(input_contents: CoreGroup[]): Promise<void>;
private _set_position_from_data_texture;
private _data_from_texture;
private _data_from_default_texture;
private _data_from_data_texture;
}
export {};