@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 ParamLessNetworkMatParamsConfig extends NodeParamsConfig {
}
export class BaseNetworkMatNode extends TypedNode {
static context() {
return NodeContext.MAT;
}
cook() {
this.cookController.endCook();
}
}
export class ParamLessBaseNetworkMatNode extends BaseNetworkMatNode {
}