UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

22 lines (21 loc) 574 B
"use strict"; import { ParamLessBaseNetworkMatNode } from "./_BaseManager"; import { NodeContext, NetworkNodeType } from "../../poly/NodeContext"; export class CopNetworkMatNode extends ParamLessBaseNetworkMatNode { constructor() { super(...arguments); this._childrenControllerContext = NodeContext.COP; } static type() { return NetworkNodeType.COP; } createNode(node_class, options) { return super.createNode(node_class, options); } children() { return super.children(); } nodesByType(type) { return super.nodesByType(type); } }