@polygonjs/plugin-mapbox
Version:
Mapbox plugin for the 3D engine https://polygonjs.com
10 lines (9 loc) • 309 B
JavaScript
import { CopNetworkObjNode } from "@polygonjs/polygonjs/dist/src/engine/nodes/obj/CopNetwork";
export class ExtendedCopObjNode extends CopNetworkObjNode {
createNode(node_class, options) {
return super.createNode(node_class, options);
}
nodesByType(type) {
return super.nodesByType(type);
}
}