@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
19 lines (18 loc) • 624 B
TypeScript
/**
* creates an erro tile
*
*
*/
import { TypedSopNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { CoreGroup } from '../../../core/geometry/Group';
import { SopType } from '../../poly/registers/nodes/types/Sop';
declare class WFCTileErrorObjectSopParamsConfig extends NodeParamsConfig {
}
export declare class WFCTileErrorObjectSopNode extends TypedSopNode<WFCTileErrorObjectSopParamsConfig> {
paramsConfig: WFCTileErrorObjectSopParamsConfig;
static type(): SopType;
initializeNode(): void;
cook(inputCoreGroups: CoreGroup[]): Promise<void>;
}
export {};