3D-Demo/jsm/nodes/core/NodeAttribute.js

15 lines
180 B
JavaScript
Raw Permalink Normal View History

2022-10-14 16:50:42 +08:00
class NodeAttribute {
constructor( name, type ) {
this.name = name;
this.type = type;
}
}
NodeAttribute.prototype.isNodeAttribute = true;
export default NodeAttribute;