@2112-lab/central-plant 0.3.51 → 0.3.52
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
CHANGED
|
@@ -29677,7 +29677,9 @@ var PathfindingManager = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
29677
29677
|
size: 0.5,
|
|
29678
29678
|
safetyMargin: 0,
|
|
29679
29679
|
minSegmentLength: 0.5,
|
|
29680
|
-
timeout: 1000
|
|
29680
|
+
timeout: 1000,
|
|
29681
|
+
groundZ: 0,
|
|
29682
|
+
minPathElevation: 0.1
|
|
29681
29683
|
},
|
|
29682
29684
|
connectorBBoxSize: 0.1 // Default size for position-based connectors (Phase 2 Refactoring)
|
|
29683
29685
|
};
|
|
@@ -41813,7 +41815,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
41813
41815
|
* Initialize the CentralPlant manager
|
|
41814
41816
|
*
|
|
41815
41817
|
* @constructor
|
|
41816
|
-
* @version 0.3.
|
|
41818
|
+
* @version 0.3.52
|
|
41817
41819
|
* @updated 2025-10-22
|
|
41818
41820
|
*
|
|
41819
41821
|
* @description Creates a new CentralPlant instance and initializes internal managers and utilities.
|
|
@@ -58,7 +58,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
58
58
|
* Initialize the CentralPlant manager
|
|
59
59
|
*
|
|
60
60
|
* @constructor
|
|
61
|
-
* @version 0.3.
|
|
61
|
+
* @version 0.3.52
|
|
62
62
|
* @updated 2025-10-22
|
|
63
63
|
*
|
|
64
64
|
* @description Creates a new CentralPlant instance and initializes internal managers and utilities.
|
|
@@ -79,7 +79,9 @@ var PathfindingManager = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
79
79
|
size: 0.5,
|
|
80
80
|
safetyMargin: 0,
|
|
81
81
|
minSegmentLength: 0.5,
|
|
82
|
-
timeout: 1000
|
|
82
|
+
timeout: 1000,
|
|
83
|
+
groundZ: 0,
|
|
84
|
+
minPathElevation: 0.1
|
|
83
85
|
},
|
|
84
86
|
connectorBBoxSize: 0.1 // Default size for position-based connectors (Phase 2 Refactoring)
|
|
85
87
|
};
|
|
@@ -34,7 +34,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
34
34
|
* Initialize the CentralPlant manager
|
|
35
35
|
*
|
|
36
36
|
* @constructor
|
|
37
|
-
* @version 0.3.
|
|
37
|
+
* @version 0.3.52
|
|
38
38
|
* @updated 2025-10-22
|
|
39
39
|
*
|
|
40
40
|
* @description Creates a new CentralPlant instance and initializes internal managers and utilities.
|
|
@@ -55,7 +55,9 @@ var PathfindingManager = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
55
55
|
size: 0.5,
|
|
56
56
|
safetyMargin: 0,
|
|
57
57
|
minSegmentLength: 0.5,
|
|
58
|
-
timeout: 1000
|
|
58
|
+
timeout: 1000,
|
|
59
|
+
groundZ: 0,
|
|
60
|
+
minPathElevation: 0.1
|
|
59
61
|
},
|
|
60
62
|
connectorBBoxSize: 0.1 // Default size for position-based connectors (Phase 2 Refactoring)
|
|
61
63
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@2112-lab/central-plant",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.52",
|
|
4
4
|
"description": "Utility modules for the Central Plant Application",
|
|
5
5
|
"main": "dist/bundle/index.js",
|
|
6
6
|
"module": "dist/esm/src/index.js",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"author": "CentralPlant Team",
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@2112-lab/pathfinder": "
|
|
34
|
+
"@2112-lab/pathfinder": "file:../pathfinder",
|
|
35
35
|
"stats.js": "^0.17.0",
|
|
36
36
|
"three": "^0.177.0"
|
|
37
37
|
},
|