UNPKG

three

Version:

JavaScript 3D library

19 lines (11 loc) 283 B
let _id = 0; class BindGroup { constructor( name = '', bindings = [], index = 0, bindingsReference = [] ) { this.name = name; this.bindings = bindings; this.index = index; this.bindingsReference = bindingsReference; this.id = _id ++; } } export default BindGroup;