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