@plurid/plurid-engine 0.0.0-16 → 0.0.0-17
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/distribution/index.js
CHANGED
|
@@ -2665,7 +2665,7 @@ const resolveSpace = (view, configuration, planesRegistrar, currentState, localS
|
|
|
2665
2665
|
view: view
|
|
2666
2666
|
}, hostname);
|
|
2667
2667
|
const computedTree = spaceTree.compute();
|
|
2668
|
-
const stateSpace = Object.assign(Object.assign(Object.assign(Object.assign({
|
|
2668
|
+
const stateSpace = Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({
|
|
2669
2669
|
loading: true,
|
|
2670
2670
|
animatedTransform: false,
|
|
2671
2671
|
transformTime: 450,
|
|
@@ -2675,6 +2675,7 @@ const resolveSpace = (view, configuration, planesRegistrar, currentState, localS
|
|
|
2675
2675
|
translationX: 0,
|
|
2676
2676
|
translationY: 0,
|
|
2677
2677
|
translationZ: 0,
|
|
2678
|
+
transform: "matrix3d(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1)",
|
|
2678
2679
|
activeUniverseID: "",
|
|
2679
2680
|
camera: {
|
|
2680
2681
|
x: 0,
|
|
@@ -2696,9 +2697,13 @@ const resolveSpace = (view, configuration, planesRegistrar, currentState, localS
|
|
|
2696
2697
|
}
|
|
2697
2698
|
},
|
|
2698
2699
|
culledView: [],
|
|
2699
|
-
|
|
2700
|
+
activePlaneID: "",
|
|
2701
|
+
isolatePlane: "",
|
|
2702
|
+
lastClosedPlane: "",
|
|
2700
2703
|
tree: computedTree
|
|
2701
|
-
}, precomputedState === null || precomputedState === void 0 ? void 0 : precomputedState.space), contextState === null || contextState === void 0 ? void 0 : contextState.space), localState === null || localState === void 0 ? void 0 : localState.space), currentState === null || currentState === void 0 ? void 0 : currentState.space)
|
|
2704
|
+
}, precomputedState === null || precomputedState === void 0 ? void 0 : precomputedState.space), contextState === null || contextState === void 0 ? void 0 : contextState.space), localState === null || localState === void 0 ? void 0 : localState.space), currentState === null || currentState === void 0 ? void 0 : currentState.space), {
|
|
2705
|
+
view: view
|
|
2706
|
+
});
|
|
2702
2707
|
if (currentState) {
|
|
2703
2708
|
stateSpace.translationX = currentState.space.translationX;
|
|
2704
2709
|
stateSpace.translationY = currentState.space.translationY;
|