Cesium-Examples/three/examples/jsm/nodes/core/NodeAttribute.js
2025-03-11 17:51:04 +08:00

16 lines
196 B
JavaScript

class NodeAttribute {
constructor( name, type, node = null ) {
this.isNodeAttribute = true;
this.name = name;
this.type = type;
this.node = node;
}
}
export default NodeAttribute;