updateMatrixWorld method
Implementation
@override
updateMatrixWorld([bool force = false]) {
var box = this.box!;
if (box.isEmpty()) return;
box.getCenter(position);
box.getSize(scale);
scale.multiplyScalar(0.5);
super.updateMatrixWorld(force);
}