UNPKG

@polygonjs/polygonjs

Version:

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

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