-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinput.scene.rt
More file actions
58 lines (56 loc) · 1.04 KB
/
input.scene.rt
File metadata and controls
58 lines (56 loc) · 1.04 KB
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
{
"imageSize": {
"width": 900,
"height": 600
},
"camera": {
"fov": {
"max": {
"degree": 60
}
}, // FOV 가로 세로 중 긴 축으로 60도
"position": [-3, 0, -10],
"lookAt": [0, 0, 0]
},
"voidColor": [0.1, 0.2, 0.3],
"ambientLight": [0.01, 0.01, 0.01],
"hdr": {
// 기본값
"gamma": 2.2,
"exposure": 1.0
},
"objects": [
{
"type": "point",
"color": [500.0, 500.0, 500.0],
"position": [5, 0, -10],
"attenuation": true
},
{
"type": "csg",
"model": {
"type": "cube",
"size": [1, 1, 1],
"position": [0, 0, 0],
"material": {
"albedo": [0.8, 0.1, 0.1],
"metallic": 0.7,
"roughness": 0.1
}
}
},
{
"type": "csg",
"model": {
"type": "sphere",
"radius": 0.5,
"position": [2, 0, 0],
"material": {
"albedo": [0.1, 0.1, 0.1],
"metallic": 0.7,
"roughness": 0.1
}
}
}
]
}