This commit is contained in:
2025-05-10 04:12:32 +02:00
parent bf9406f924
commit 1a31e419cc
7 changed files with 314 additions and 23 deletions

View File

@@ -46,10 +46,10 @@
Ram alloué
</label>
<div class="ranges">
<span>
<span id="currentRam">
0.5GB
</span>
<input type="range" name="ram" min="0" max="2048" id="ram" onchange="handleSettingsChanges(this.name, this.value)">
<input type="range" name="ram" min="0" max="2048" id="ram" onchange="handleSettingsChanges('ram', { max: this.value })">
<span id="maxRam">
MAX
</span>
@@ -59,7 +59,7 @@
Distance de rendu
</label>
<div class="ranges">
<span>
<span id="renderDistance">
4
</span>
<input type="range" name="renderDistance" min="4" max="32" id="renderDistance" onchange="handleOptionsChanges(this.name, this.value)">
@@ -72,7 +72,7 @@
Taille de l'interface
</label>
<div class="ranges">
<span>
<span id="guiScale">
1
</span>
<input type="range" name="guiScale" min="1" max="4" id="guiScale" onchange="handleOptionsChanges(this.name, this.value)">
@@ -100,12 +100,12 @@
Luminsoité max
</label>
</div>
<!-- <div>
<input type="checkbox" name="sildurs_shader" id="sildurs_shader">
<div>
<input type="checkbox" name="sildurs_shader" id="sildurs_shader" onclick="system.call('oculus::defaultshaderset', { boolean: this.checked })">
<label for="sildurs_shader">
Sildur's Shader
</label>
</div> -->
</div>
</div>
</article>
</details>
@@ -205,7 +205,7 @@
<section class="center">
<img class="logo" src="./assets/img/logo.png" alt="">
<br>
<button class="play" name="play" onclick="system.call('game::launch')">
<button class="play load" name="play" onclick="system.call('game::launch')">
Jouer
</button>
</section>