@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
16 lines (15 loc) • 403 B
JavaScript
;
import { TypedPostNode } from "./_Base";
import { NodeParamsConfig } from "../utils/params/ParamsConfig";
class NullPostParamsConfig extends NodeParamsConfig {
}
const ParamsConfig = new NullPostParamsConfig();
export class NullPostNode extends TypedPostNode {
constructor() {
super(...arguments);
this.paramsConfig = ParamsConfig;
}
static type() {
return "null";
}
}