Cesium-Examples/three/examples/jsm/nodes/core/NodeVar.js

15 lines
145 B
JavaScript
Raw Normal View History

2025-03-11 08:25:45 +00:00
class NodeVar {
constructor( name, type ) {
this.isNodeVar = true;
this.name = name;
this.type = type;
}
}
export default NodeVar;