@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
17 lines (16 loc) • 477 B
JavaScript
;
import { NodeContext } from "../../poly/NodeContext";
import { NodeParamsConfig } from "../utils/params/ParamsConfig";
import { TypedNode } from "../_Base";
class ParamLessNetworkAudioParamsConfig extends NodeParamsConfig {
}
export class BaseNetworkAudioNode extends TypedNode {
static context() {
return NodeContext.AUDIO;
}
cook() {
this.cookController.endCook();
}
}
export class ParamLessBaseNetworkAudioNode extends BaseNetworkAudioNode {
}