in src/core/Object3D.ts [81:88]
set scale(scale: Vector3) {
if (!this._scale.equals(scale)) {
this._scale = scale;
this.scaleChanged = true;
this._updateMatrix();
this.dispatchEvent(this._changeEvent);
}
}