diff options
Diffstat (limited to 'cwd/assets/altcraft/ui/options.rml')
-rw-r--r-- | cwd/assets/altcraft/ui/options.rml | 32 |
1 files changed, 28 insertions, 4 deletions
diff --git a/cwd/assets/altcraft/ui/options.rml b/cwd/assets/altcraft/ui/options.rml index 485dcba..4529487 100644 --- a/cwd/assets/altcraft/ui/options.rml +++ b/cwd/assets/altcraft/ui/options.rml @@ -8,9 +8,15 @@ <body class="body-options"> <form> <div class="option"> - <label>Brightness</label> - <input type="range" min="0.0" max="1.0" step="0.01" id="brightness" /> - <span id="brightness-val"></span> + <label>Gamma</label> + <input type="range" min="1.0" max="3.0" step="0.1" id="gamma" /> + <span id="gamma-val"></span> + </div> + + <div class="option"> + <label>Deffered shading</label> + <input type="checkbox" id="deffered" /> + <span id="deffered-val"></span> </div> <div class="option"> @@ -54,7 +60,25 @@ <input type="checkbox" id="wireframe" /> <span id="wireframe-val"></span> </div> - + + <div class="option"> + <label>Smooth lighting</label> + <input type="checkbox" id="smoothlight" /> + <span id="smoothlight-val"></span> + </div> + + <div class="option"> + <label>Ambient occlusion quality</label> + <input type="range" min="0" max="64" step="4" id="ssaoSamples" /> + <span id="ssaoSamples-val"></span> + </div> + + <div class="option"> + <label>Ambient occlusion scale</label> + <input type="range" min="0.05" max="2.0" step="0.05" id="ssaoScale" /> + <span id="ssaoScale-val"></span> + </div> + </form> <button class="mc-button" id="done" onclick="CloseOptions(document)">Done</button> </body> |