UNPKG

@polygonjs/polygonjs

Version:

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

17 lines (16 loc) 472 B
"use strict"; import { NodeContext } from "../../poly/NodeContext"; import { NodeParamsConfig } from "../utils/params/ParamsConfig"; import { TypedNode } from "../_Base"; class ParamLessNetworkAnimParamsConfig extends NodeParamsConfig { } export class BaseNetworkAnimNode extends TypedNode { static context() { return NodeContext.ANIM; } cook() { this.cookController.endCook(); } } export class ParamLessBaseNetworkAnimNode extends BaseNetworkAnimNode { }