UNPKG

three

Version:

JavaScript 3D library

16 lines (9 loc) 196 B
class NodeAttribute { constructor( name, type, node = null ) { this.isNodeAttribute = true; this.name = name; this.type = type; this.node = node; } } export default NodeAttribute;