UNPKG

three

Version:

JavaScript 3D library

19 lines (10 loc) 198 B
let _id = 0; class ProgrammableStage { constructor( code, type ) { this.id = _id ++; this.code = code; this.stage = type; this.usedTimes = 0; } } export default ProgrammableStage;