UNPKG

@polygonjs/polygonjs

Version:

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

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