UNPKG

three

Version:

JavaScript 3D library

16 lines (9 loc) 223 B
class NodeVar { constructor( name, type, snippet = '' ) { this.name = name; this.type = type; this.snippet = snippet; Object.defineProperty( this, 'isNodeVar', { value: true } ); } } export default NodeVar;