From b0676a48b8b4d8b4cb5778778dd7eedc179f5f82 Mon Sep 17 00:00:00 2001 From: "Z. Cliffe Schreuders" Date: Tue, 29 Apr 2025 00:26:30 +0100 Subject: [PATCH] Update OBJECT_SCALES in index.html: adjust scaling for phone and add bluetooth_scanner, and change highlight tint color for improved visual feedback. --- index.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index f8f105a..c69601b 100644 --- a/index.html +++ b/index.html @@ -2388,8 +2388,9 @@ const OBJECT_SCALES = { 'notes': 0.75, 'key': 0.75, - 'phone': 0.75, - 'tablet': 0.75 + 'phone': 1, + 'tablet': 0.75, + 'bluetooth_scanner': 0.7 }; // Process scenario objects first @@ -4362,7 +4363,7 @@ if (distanceSq <= INTERACTION_RANGE_SQ) { if (!obj.isHighlighted) { obj.isHighlighted = true; - obj.setTint(0xdddddd); // Simple highlight without tween + obj.setTint(0xADD8E6); // Simple highlight without tween } } else if (obj.isHighlighted) { obj.isHighlighted = false;