Translation and Rotation controls now function

This commit is contained in:
2025-10-27 22:15:14 -04:00
parent 9ba978512d
commit 052429a724
2 changed files with 9 additions and 24 deletions

View File

@ -26,14 +26,14 @@
<legend>Translation &amp; Rotation</legend>
<div class="control-group">
<label for="vx-slider">Move Forward/Backward (m/s)</label>
<input type="range" id="vx-slider" min="-3" max="3" step="0.1" value="0">
<label for="vx-slider">Move Forward/Backward (pixels/s)</label>
<input type="range" id="vx-slider" min="-300" max="300" step="0.1" value="0">
<output id="vx-value">0.0</output>
</div>
<div class="control-group">
<label for="vy-slider">Strafe Left/Right (m/s)</label>
<input type="range" id="vy-slider" min="-3" max="3" step="0.1" value="0">
<label for="vy-slider">Strafe Left/Right (pixels/s)</label>
<input type="range" id="vy-slider" min="-300" max="300" step="0.1" value="0">
<output id="vy-value">0.0</output>
</div>
@ -50,8 +50,8 @@
<legend>Performance Limits</legend>
<div class="control-group">
<label for="max-speed-slider">Max Module Speed (m/s)</label>
<input type="range" id="max-speed-slider" min="1" max="5" step="0.1" value="4">
<label for="max-speed-slider">Max Module Speed (pixels/s)</label>
<input type="range" id="max-speed-slider" min="1" max="300" step="0.1" value="4">
<output id="max-speed-value">4.0</output>
</div>
</fieldset>