@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
20 lines (19 loc) • 560 B
JavaScript
;
import { NodeContext } from "../../poly/NodeContext";
import { NodeParamsConfig } from "../utils/params/ParamsConfig";
import { TypedNode } from "../_Base";
class ParamLessNetworkSopParamsConfig extends NodeParamsConfig {
}
export class BaseNetworkSopNode extends TypedNode {
static context() {
return NodeContext.SOP;
}
// initializeBaseNode() {
// this.children_controller?.init({dependent: false});
// }
cook() {
this.cookController.endCook();
}
}
export class ParamLessBaseNetworkSopNode extends BaseNetworkSopNode {
}