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

16 lines
217 B
JavaScript
Raw Normal View History

2025-03-11 08:25:45 +00:00
class NodeCode {
constructor( name, type, code = '' ) {
this.name = name;
this.type = type;
this.code = code;
Object.defineProperty( this, 'isNodeCode', { value: true } );
}
}
export default NodeCode;