gralobe 1.0.20 → 1.0.21
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/gralobe.js +3 -3
- package/dist/gralobe.js.map +1 -1
- package/dist/gralobe.umd.cjs +1 -1
- package/dist/gralobe.umd.cjs.map +1 -1
- package/package.json +1 -1
package/dist/gralobe.js
CHANGED
|
@@ -6403,11 +6403,11 @@ class xo {
|
|
|
6403
6403
|
const t = this.gui.domElement;
|
|
6404
6404
|
t.style.position = "absolute", t.style.top = "8px", t.style.right = "8px", t.style.zIndex = "100", this.gui.close();
|
|
6405
6405
|
const i = this.gui.addFolder("View");
|
|
6406
|
-
i.add({ toGlobe: () => this.toGlobe() }, "toGlobe").name("→ Globe"), i.add({ toFlat: () => this.toFlat() }, "toFlat").name("→ Flat"), i.add({ morph: this.morph }, "morph", 0, 1).name("Morph").onChange((
|
|
6406
|
+
i.add({ toGlobe: () => this.toGlobe() }, "toGlobe").name("→ Globe"), i.add({ toFlat: () => this.toFlat() }, "toFlat").name("→ Flat"), i.add({ morph: this.morph }, "morph", 0, 1).name("Morph").onChange((l) => this.setMorph(l));
|
|
6407
6407
|
const n = this.gui.addFolder("Statistics"), r = Object.keys(wi);
|
|
6408
|
-
n.add({ stat: this.config.statistic }, "stat", r).name("Statistic").onChange((
|
|
6408
|
+
n.add({ stat: this.config.statistic }, "stat", r).name("Statistic").onChange((l) => this.setStatistic(l));
|
|
6409
6409
|
const s = ["none", "minimal", "major", "all"];
|
|
6410
|
-
this.gui.addFolder("Display").add({ labels: this.config.labels }, "labels", s).name("Labels").onChange((
|
|
6410
|
+
this.gui.addFolder("Display").add({ labels: this.config.labels }, "labels", s).name("Labels").onChange((l) => this.setLabels(l)), this.gui.add(this.config, "autoRotate").name("Auto Rotate"), this.gui.addFolder("Export").add({ screenshot: () => this.screenshot({ width: 1920, height: 1080 }) }, "screenshot").name("📷 Screenshot");
|
|
6411
6411
|
}
|
|
6412
6412
|
handleResize = () => {
|
|
6413
6413
|
if (this.isDestroyed) return;
|