Spaces:
Sleeping
Sleeping
File size: 751 Bytes
2b7aae2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | import { InterleavedBuffer } from './InterleavedBuffer.js';
class InstancedInterleavedBuffer extends InterleavedBuffer {
constructor(array, stride, meshPerAttribute = 1) {
super(array, stride);
this.meshPerAttribute = meshPerAttribute;
}
copy(source) {
super.copy(source);
this.meshPerAttribute = source.meshPerAttribute;
return this;
}
clone(data) {
const ib = super.clone(data);
ib.meshPerAttribute = this.meshPerAttribute;
return ib;
}
toJSON(data) {
const json = super.toJSON(data);
json.isInstancedInterleavedBuffer = true;
json.meshPerAttribute = this.meshPerAttribute;
return json;
}
}
InstancedInterleavedBuffer.prototype.isInstancedInterleavedBuffer = true;
export { InstancedInterleavedBuffer };
|