@2112-lab/central-plant 0.1.96 → 0.1.97
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/dist/bundle/index.js +2 -2
- package/dist/cjs/src/core/centralPlant.js +1 -1
- package/dist/cjs/src/managers/scene/sceneInitializationManager.js +1 -1
- package/dist/esm/src/core/centralPlant.js +1 -1
- package/dist/esm/src/managers/scene/sceneInitializationManager.js +1 -1
- package/package.json +1 -1
package/dist/bundle/index.js
CHANGED
|
@@ -24181,7 +24181,7 @@ var SceneInitializationManager = /*#__PURE__*/function () {
|
|
|
24181
24181
|
containerWidth = containerRect.width;
|
|
24182
24182
|
containerHeight = containerRect.height; // Create camera (Z-up coordinate system with flipped Y)
|
|
24183
24183
|
component.camera = new THREE__namespace.PerspectiveCamera(50, containerWidth / containerHeight, 0.01, 1000);
|
|
24184
|
-
component.camera.position.set(-8, -9,
|
|
24184
|
+
component.camera.position.set(-8, -9, 2); // Flipped Y direction
|
|
24185
24185
|
component.camera.up.set(0, 0, 1); // Set Z as up vector
|
|
24186
24186
|
|
|
24187
24187
|
// Create renderer
|
|
@@ -37233,7 +37233,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
37233
37233
|
* Initialize the CentralPlant manager
|
|
37234
37234
|
*
|
|
37235
37235
|
* @constructor
|
|
37236
|
-
* @version 0.1.
|
|
37236
|
+
* @version 0.1.97
|
|
37237
37237
|
* @updated 2025-10-22
|
|
37238
37238
|
*
|
|
37239
37239
|
* @description Creates a new CentralPlant instance and initializes internal managers and utilities.
|
|
@@ -19,7 +19,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
19
19
|
* Initialize the CentralPlant manager
|
|
20
20
|
*
|
|
21
21
|
* @constructor
|
|
22
|
-
* @version 0.1.
|
|
22
|
+
* @version 0.1.97
|
|
23
23
|
* @updated 2025-10-22
|
|
24
24
|
*
|
|
25
25
|
* @description Creates a new CentralPlant instance and initializes internal managers and utilities.
|
|
@@ -54,7 +54,7 @@ var SceneInitializationManager = /*#__PURE__*/function () {
|
|
|
54
54
|
containerWidth = containerRect.width;
|
|
55
55
|
containerHeight = containerRect.height; // Create camera (Z-up coordinate system with flipped Y)
|
|
56
56
|
component.camera = new THREE__namespace.PerspectiveCamera(50, containerWidth / containerHeight, 0.01, 1000);
|
|
57
|
-
component.camera.position.set(-8, -9,
|
|
57
|
+
component.camera.position.set(-8, -9, 2); // Flipped Y direction
|
|
58
58
|
component.camera.up.set(0, 0, 1); // Set Z as up vector
|
|
59
59
|
|
|
60
60
|
// Create renderer
|
|
@@ -15,7 +15,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
15
15
|
* Initialize the CentralPlant manager
|
|
16
16
|
*
|
|
17
17
|
* @constructor
|
|
18
|
-
* @version 0.1.
|
|
18
|
+
* @version 0.1.97
|
|
19
19
|
* @updated 2025-10-22
|
|
20
20
|
*
|
|
21
21
|
* @description Creates a new CentralPlant instance and initializes internal managers and utilities.
|
|
@@ -30,7 +30,7 @@ var SceneInitializationManager = /*#__PURE__*/function () {
|
|
|
30
30
|
containerWidth = containerRect.width;
|
|
31
31
|
containerHeight = containerRect.height; // Create camera (Z-up coordinate system with flipped Y)
|
|
32
32
|
component.camera = new THREE.PerspectiveCamera(50, containerWidth / containerHeight, 0.01, 1000);
|
|
33
|
-
component.camera.position.set(-8, -9,
|
|
33
|
+
component.camera.position.set(-8, -9, 2); // Flipped Y direction
|
|
34
34
|
component.camera.up.set(0, 0, 1); // Set Z as up vector
|
|
35
35
|
|
|
36
36
|
// Create renderer
|