This commit is contained in:
2025-05-01 14:46:56 +02:00
parent 378e4b4823
commit 96e9173ff0
6 changed files with 355 additions and 154 deletions

View File

@@ -49,8 +49,8 @@
<span>
0.5GB
</span>
<input type="range" name="ram" min="0" max="2048" id="ram">
<span>
<input type="range" name="ram" min="0" max="2048" id="ram" onchange="handleSettingsChanges(this.name, this.value)">
<span id="maxRam">
MAX
</span>
</div>
@@ -62,20 +62,20 @@
<span>
4
</span>
<input type="range" name="ram" min="4" max="32" id="renderDistance">
<input type="range" name="renderDistance" min="4" max="32" id="renderDistance" onchange="handleOptionsChanges(this.name, this.value)">
<span>
32
</span>
</div>
<br>
<label>
Ram alloué
Taille de l'interface
</label>
<div class="ranges">
<span>
1
</span>
<input type="range" name="ram" min="1" max="4" id="guiScale">
<input type="range" name="guiScale" min="1" max="4" id="guiScale" onchange="handleOptionsChanges(this.name, this.value)">
<span>
4
</span>
@@ -83,29 +83,29 @@
<br>
<div class="checkboxes">
<div>
<input type="checkbox" name="clouds" id="clouds">
<label for="clouds">
<input type="checkbox" name="renderClouds" id="renderClouds" onchange="handleOptionsChanges(this.name, this.checked)">
<label for="renderClouds">
Nuages
</label>
</div>
<div>
<input type="checkbox" name="lowGraphism" id="lowGraphism">
<label for="lowGraphism">
<input type="checkbox" name="graphicsMode" id="graphicsMode" onchange="handleOptionsChanges(this.name, this.checked)">
<label for="graphicsMode">
Graphisme bas
</label>
</div>
<div>
<input type="checkbox" name="fullbright" id="fullbright">
<label for="fullbright">
<input type="checkbox" name="gamma" id="gamma" onchange="handleOptionsChanges(this.name, this.checked)">
<label for="gamma">
Luminsoité max
</label>
</div>
<div>
<!-- <div>
<input type="checkbox" name="sildurs_shader" id="sildurs_shader">
<label for="sildurs_shader">
Sildur's Shader
</label>
</div>
</div> -->
</div>
</article>
</details>