bruce-cesium 5.9.3 → 5.9.4
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/bruce-cesium.es5.js +11 -3
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +9 -1
- package/dist/bruce-cesium.umd.js.map +1 -1
- package/dist/lib/bruce-cesium.js +1 -1
- package/dist/lib/rendering/render-managers/other/assembly-render-manager.js +8 -0
- package/dist/lib/rendering/render-managers/other/assembly-render-manager.js.map +1 -1
- package/dist/types/bruce-cesium.d.ts +1 -1
- package/dist/types/rendering/render-managers/other/assembly-render-manager.d.ts +4 -1
- package/package.json +1 -1
package/dist/bruce-cesium.umd.js
CHANGED
|
@@ -22323,6 +22323,12 @@
|
|
|
22323
22323
|
get Disposed() {
|
|
22324
22324
|
return this.disposed;
|
|
22325
22325
|
}
|
|
22326
|
+
get Hierarchy() {
|
|
22327
|
+
return this.hierarchy;
|
|
22328
|
+
}
|
|
22329
|
+
get HierarchyUpdate() {
|
|
22330
|
+
return this.hierarchyUpdate;
|
|
22331
|
+
}
|
|
22326
22332
|
get ModelSpace() {
|
|
22327
22333
|
return this.modelSpace;
|
|
22328
22334
|
}
|
|
@@ -22330,6 +22336,7 @@
|
|
|
22330
22336
|
this.disposed = false;
|
|
22331
22337
|
// Cache of the hierarchy so that our scene-tree can reference it.
|
|
22332
22338
|
this.hierarchy = null;
|
|
22339
|
+
this.hierarchyUpdate = new BModels.BruceEvent();
|
|
22333
22340
|
// Quick look-up of the hierarchy nodes by entity ID.
|
|
22334
22341
|
this.hierarchyNodeByEntityId = null;
|
|
22335
22342
|
this.modelSpace = false;
|
|
@@ -22359,6 +22366,7 @@
|
|
|
22359
22366
|
if (this.disposed) {
|
|
22360
22367
|
return;
|
|
22361
22368
|
}
|
|
22369
|
+
this.hierarchyUpdate.Trigger(hierarchy);
|
|
22362
22370
|
// Build hierarchy node cache for quick lookups
|
|
22363
22371
|
this.buildHierarchyNodes(hierarchy);
|
|
22364
22372
|
const traverseHierarchy = (node, leavesOnly) => {
|
|
@@ -33021,7 +33029,7 @@
|
|
|
33021
33029
|
}
|
|
33022
33030
|
}
|
|
33023
33031
|
|
|
33024
|
-
const VERSION = "5.9.
|
|
33032
|
+
const VERSION = "5.9.4";
|
|
33025
33033
|
|
|
33026
33034
|
exports.VERSION = VERSION;
|
|
33027
33035
|
exports.isOutlineChanged = isOutlineChanged;
|