@operato/scene-storage 10.0.0-beta.60 → 10.0.0-beta.61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [10.0.0-beta.61](https://github.com/things-scene/operato-scene/compare/v10.0.0-beta.60...v10.0.0-beta.61) (2026-06-18)
7
+
8
+
9
+ ### :house: Code Refactoring
10
+
11
+ * **carrier:** Phase 8.x — fallback / CarrierHolder.reparent 완전 폐기 ([77c06b2](https://github.com/things-scene/operato-scene/commit/77c06b27f7b7cc049837326eb3716a4067715965))
12
+
13
+
14
+
6
15
  ## [10.0.0-beta.60](https://github.com/things-scene/operato-scene/compare/v10.0.0-beta.59...v10.0.0-beta.60) (2026-06-17)
7
16
 
8
17
  **Note:** Version bump only for package @operato/scene-storage
package/dist/rack-grid.js CHANGED
@@ -1120,10 +1120,9 @@ let RackGrid = class RackGrid extends RecordStorage()(Holdable(CarrierHolder(Pla
1120
1120
  zPos: cellBottomY
1121
1121
  };
1122
1122
  const carrier = new CarrierClass(carrierState, this._app);
1123
- this.addHolding(carrier); // transient carrier → _holdings (§1.2)
1124
- // 3D 강제 빌드 + holder attach + manual placement/anchor.
1123
+ this.addHolding(carrier);
1124
+ // 3D 강제 빌드 + manual placement/anchor.
1125
1125
  void carrier.realObject;
1126
- carrier.applyHolderAttachPoint?.();
1127
1126
  carrier.realObject?.setTransientPlacement?.({ policy: 'carried' });
1128
1127
  const anchor = this.getSlotAttachObject3d(cellId);
1129
1128
  const carrierObj3d = carrier.realObject?.object3d;