diff --git a/locksmith-forge.html b/locksmith-forge.html index b42c377..04938dd 100644 --- a/locksmith-forge.html +++ b/locksmith-forge.html @@ -243,7 +243,7 @@
LEVEL 1
Pins: 3
-
Difficulty: Easy
+
Hints: Enabled
Sensitivity: 5
Lift Speed: 1.0
@@ -607,7 +607,11 @@ const config = this.levelConfig[this.currentLevel]; if (config) { document.getElementById('pinCount').textContent = config.pinCount; - document.getElementById('difficulty').textContent = config.difficulty; + + // Show hints status based on whether visual highlighting is enabled + const hintsEnabled = config.highlightBindingOrder === 'enabled' || config.pinAlignmentHighlighting === 'enabled'; + document.getElementById('hints').textContent = hintsEnabled ? 'Enabled' : 'Disabled'; + document.getElementById('sensitivity').textContent = config.sensitivity; document.getElementById('liftSpeed').textContent = config.liftSpeed; } diff --git a/simple-phaser-test.html b/simple-phaser-test.html new file mode 100644 index 0000000..5180cc7 --- /dev/null +++ b/simple-phaser-test.html @@ -0,0 +1,103 @@ + + + + + + Simple Phaser Test + + + +
+

Simple Phaser Test

+
Loading...
+
+
+ + + + + + + \ No newline at end of file