diff --git a/public/2-Hit.html b/public/2-Hit.html index b10a78b520b6f9351c533632624e6a221d2b7232..992bf452b076739151fed3b2b343e14ee7bf7369 100644 --- a/public/2-Hit.html +++ b/public/2-Hit.html @@ -80,6 +80,10 @@ session.addEventListener("select", (event) => { if (flower) { const clone = flower.clone(); clone.position.copy(reticle.position); + // Set the desired scale for the icon. + const iconScale = 0.5; // Adjust the scale value as needed + clone.scale.set(iconScale, iconScale, iconScale); + scene.add(clone); } });