@2112-lab/central-plant 0.3.37 → 0.3.38
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
|
@@ -11772,7 +11772,8 @@ var SceneExportManager = /*#__PURE__*/function () {
|
|
|
11772
11772
|
|
|
11773
11773
|
// Copy only essential userData properties (libraryId, objectType, direction, group)
|
|
11774
11774
|
Object.keys(threeObject.userData).forEach(function (key) {
|
|
11775
|
-
|
|
11775
|
+
// Skip runtime/internal keys (e.g. _filteredBBoxCache from boundingBoxUtils)
|
|
11776
|
+
if (!excludedKeys.has(key) && !key.startsWith('_')) {
|
|
11776
11777
|
jsonObject.userData[key] = threeObject.userData[key];
|
|
11777
11778
|
}
|
|
11778
11779
|
});
|
|
@@ -40194,7 +40195,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
40194
40195
|
* Initialize the CentralPlant manager
|
|
40195
40196
|
*
|
|
40196
40197
|
* @constructor
|
|
40197
|
-
* @version 0.3.
|
|
40198
|
+
* @version 0.3.38
|
|
40198
40199
|
* @updated 2025-10-22
|
|
40199
40200
|
*
|
|
40200
40201
|
* @description Creates a new CentralPlant instance and initializes internal managers and utilities.
|
|
@@ -35,7 +35,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
35
35
|
* Initialize the CentralPlant manager
|
|
36
36
|
*
|
|
37
37
|
* @constructor
|
|
38
|
-
* @version 0.3.
|
|
38
|
+
* @version 0.3.38
|
|
39
39
|
* @updated 2025-10-22
|
|
40
40
|
*
|
|
41
41
|
* @description Creates a new CentralPlant instance and initializes internal managers and utilities.
|
|
@@ -199,7 +199,8 @@ var SceneExportManager = /*#__PURE__*/function () {
|
|
|
199
199
|
|
|
200
200
|
// Copy only essential userData properties (libraryId, objectType, direction, group)
|
|
201
201
|
Object.keys(threeObject.userData).forEach(function (key) {
|
|
202
|
-
|
|
202
|
+
// Skip runtime/internal keys (e.g. _filteredBBoxCache from boundingBoxUtils)
|
|
203
|
+
if (!excludedKeys.has(key) && !key.startsWith('_')) {
|
|
203
204
|
jsonObject.userData[key] = threeObject.userData[key];
|
|
204
205
|
}
|
|
205
206
|
});
|
|
@@ -31,7 +31,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
|
|
|
31
31
|
* Initialize the CentralPlant manager
|
|
32
32
|
*
|
|
33
33
|
* @constructor
|
|
34
|
-
* @version 0.3.
|
|
34
|
+
* @version 0.3.38
|
|
35
35
|
* @updated 2025-10-22
|
|
36
36
|
*
|
|
37
37
|
* @description Creates a new CentralPlant instance and initializes internal managers and utilities.
|
|
@@ -177,7 +177,8 @@ var SceneExportManager = /*#__PURE__*/function () {
|
|
|
177
177
|
|
|
178
178
|
// Copy only essential userData properties (libraryId, objectType, direction, group)
|
|
179
179
|
Object.keys(threeObject.userData).forEach(function (key) {
|
|
180
|
-
|
|
180
|
+
// Skip runtime/internal keys (e.g. _filteredBBoxCache from boundingBoxUtils)
|
|
181
|
+
if (!excludedKeys.has(key) && !key.startsWith('_')) {
|
|
181
182
|
jsonObject.userData[key] = threeObject.userData[key];
|
|
182
183
|
}
|
|
183
184
|
});
|