@aibee/crc-bmap 0.6.10 → 0.6.11

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/lib/bmap.esm.js CHANGED
@@ -4435,7 +4435,7 @@ var Floor = class extends Object3D8 {
4435
4435
  changeGroundMaxHeight() {
4436
4436
  const grounds = Array.from(this.grounds);
4437
4437
  this.groundMaxHeight = this.grounds.size > 0 ? Math.max(...grounds.map((ground) => ground.options.height + ground.options.airHeight + ground.options.deltaHeight)) : 0;
4438
- this.groundUpper.position.z = this.groundMaxHeight + 1e-3;
4438
+ this.groundUpper.position.z = this.groundMaxHeight + 0.01;
4439
4439
  }
4440
4440
  get hasElement() {
4441
4441
  return !!(this.grounds.size || this.graphicLayer.children.length);