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

16 lines
196 B
JavaScript
Raw Normal View History

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