in src/core/Object3D.ts [55:62]
set position(position: Vector3) {
if (!this._position.equals(position)) {
this._position = position;
this.positionChanged = true;
this._updateMatrix();
this.dispatchEvent(this._changeEvent);
}
}