From 75fb398ad45f9b8db20cf2a75f7e683929c67ae9 Mon Sep 17 00:00:00 2001 From: Chris Morrell Date: Sun, 1 Dec 2024 21:49:08 -0500 Subject: [PATCH] Drop highres image --- resources/js/globe.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/js/globe.js b/resources/js/globe.js index 5176b3c..27cddb8 100644 --- a/resources/js/globe.js +++ b/resources/js/globe.js @@ -2,7 +2,7 @@ import * as THREE from 'three'; import ThreeGlobe from 'three-globe'; import WebGL from 'three/addons/capabilities/WebGL.js'; // import earthNight from '../../public/world/earth-night.jpg'; -import earthNightHighRes from '../../public/world/earth-night-hires.jpg'; +// import earthNightHighRes from '../../public/world/earth-night-hires.jpg'; import earthNightCustom from '../../public/world/earth-night-custom.jpg'; import earthTopology from '../../public/world/earth-topology.png'; @@ -27,7 +27,7 @@ function random_number(min, max) { const Globe = new ThreeGlobe() // .globeImageUrl(is_fast_connection ? earthNightHighRes : earthNight) - .globeImageUrl(highres ? earthNightHighRes : earthNightCustom) + .globeImageUrl(earthNightCustom) .bumpImageUrl(earthTopology) .ringsData(points) .ringColor(() => colorInterpolator)