three
Version:
JavaScript 3D library
27 lines (14 loc) • 327 B
JavaScript
import { Group } from '../../objects/Group.js';
class BundleGroup extends Group {
constructor() {
super();
this.isBundleGroup = true;
this.type = 'BundleGroup';
this.static = true;
this.version = 0;
}
set needsUpdate( value ) {
if ( value === true ) this.version ++;
}
}
export default BundleGroup;