vim-web 0.3.42-dev.12 → 0.3.42-dev.13

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.
@@ -45722,9 +45722,7 @@ void main() {
45722
45722
  }
45723
45723
  if (value) {
45724
45724
  this._meshes.forEach((m) => {
45725
- if (m.mesh.mesh.visible) {
45726
- m.mesh.mesh.visible = true;
45727
- }
45725
+ m.mesh.mesh.visible = true;
45728
45726
  });
45729
45727
  }
45730
45728
  }
@@ -52910,12 +52908,14 @@ void main() {
52910
52908
  if (mesh instanceof InstancedMesh) {
52911
52909
  if (this.smallGhostThreshold <= 0) {
52912
52910
  mesh.mesh.visible = true;
52911
+ console.log("skip");
52913
52912
  continue;
52914
52913
  }
52915
52914
  const visible2 = mesh.getSubmeshes().some(
52916
52915
  (m) => m.object.visible
52917
52916
  );
52918
52917
  mesh.mesh.visible = !(hide && !visible2 && mesh.size < this.smallGhostThreshold);
52918
+ console.log("visible", mesh.mesh.visible);
52919
52919
  }
52920
52920
  }
52921
52921
  }
@@ -66887,7 +66887,7 @@ Averrage Date/Second ${avgDataRatePS} kb
66887
66887
  materials: {
66888
66888
  useFastMaterial: false,
66889
66889
  useGhostMaterial: true,
66890
- smallGhostThreshold: 10
66890
+ smallGhostThreshold: 100
66891
66891
  },
66892
66892
  isolation: {
66893
66893
  enable: true