-
Notifications
You must be signed in to change notification settings - Fork 0
/
hdri-panorama.html
63 lines (61 loc) · 2.24 KB
/
hdri-panorama.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/main.css">
<title>hdr Panorama</title>
</head>
<body>
<script type="module" src="./js/views/hdri-panorama.js"></script>
<main id="renderer_target">
<nav>
<div class="nav-main-elements">
<label pbr1-onlyshowifmultivalued="environment_name" for="environment_name" title="environment_name">Environment</label>
<select
onchange="window.PBR1_CHANGE({'environment_index':this.value});"
pbr1-onlyshowifmultivalued="environment_name"
pbr1-optionsource="environment_name"
pbr1-selectedsource="environment_index"
id="environment_name"
name="environment_name"
>
</select>
<label id="environment_exposure_label" for="environment_exposure" title="environment_exposure">Exposure</label>
<input
type="range"
min="-32"
max="32"
value="0"
id="environment_exposure"
step="0.25"
oninput="window.PBR1_CHANGE({'environment_exposure':this.value});"
ondblclick="window.PBR1_CHANGE({'environment_exposure':null},true);"
>
<label for="environment_tonemapping" title="environment_tonemapping">Tone Mapping</label>
<select
id="environment_tonemapping"
onchange="window.PBR1_CHANGE({'environment_tonemapping':this.value});"
onload="window.PBR1_CHANGE({'environment_tonemapping':this.value});"
>
<option title="linear" value="linear">Linear</option>
<option title="filmic" value="filmic">Filmic</option>
<option title="reinhard" value="reinhard">Reinhard</option>
<option title="cineon" value="cineon">Cineon</option>
<option title="agx" value="agx">AgX</option>
</select>
</div>
<label id="gui_enable_label" for="gui_enable" title="gui_enable">hide</label>
<input
checked="checked"
type="checkbox"
id="gui_enable"
onchange="window.PBR1_CHANGE({'gui_enable':this.checked ? '1' : '0'});"
>
</nav>
<a class="watermark watermark-off" target="_blank"></a>
<span class="message-area" id="messageArea"></span>
</main>
</body>
</html>