@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
17 lines (16 loc) • 467 B
JavaScript
;
import { NodeContext } from "../../poly/NodeContext";
import { NodeParamsConfig } from "../utils/params/ParamsConfig";
import { TypedNode } from "../_Base";
class ParamLessNetworkCopParamsConfig extends NodeParamsConfig {
}
export class BaseNetworkCopNode extends TypedNode {
static context() {
return NodeContext.COP;
}
cook() {
this.cookController.endCook();
}
}
export class ParamLessBaseNetworkCopNode extends BaseNetworkCopNode {
}