UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

17 lines 623 B
export class ContinuousGridCellActionSetTerrainHeight extends ContinuousGridCellAction { /** * * @type {Sampler2D} */ heightSampler: Sampler2D; /** * Target height * @type {CellFilter} */ target: CellFilter; initialize(seed: any, ecd: any, grid: any): void; execute(ecd: any, grid: any, x: any, y: any, rotation: any, strength: any): void; } import { ContinuousGridCellAction } from "./ContinuousGridCellAction.js"; import { Sampler2D } from "../../../engine/graphics/texture/sampler/Sampler2D.js"; //# sourceMappingURL=ContinuousGridCellActionSetTerrainHeight.d.ts.map