-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path03-Lighting.html
45 lines (43 loc) · 1.45 KB
/
03-Lighting.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pencahayaan</title>
<script src="https://aframe.io/releases/1.0.4/aframe.min.js"></script>
</head>
<body>
<a-scene>
<!-- tembok -->
<a-box color="#444444" position="0 1.5 -5" height="5" width="15" depth="0.2"></a-box>
<a-box color="#333333" position="0 -1 -1" height="0.2" width="15" depth="10"></a-box>
<a-box color="#222222" position="-5 1.5 -1" height="5" width="0.2" depth="10"></a-box>
<a-light type="ambient" intensity="0.2"></a-light>
<!-- <a-light
type="point"
position="0 1.5 -2"
intensity="1.0"
></a-light> -->
<!-- <a-light
type="spot"
position="0 2 0"
target="#box3"
intensity="1.0"
angle="30"
penumbra="0.2"
></a-light> -->
<a-light
type="directional"
position="5 1.5 -3"
target="#box3"
intensity="1.0"
angle="30"
penumbra="0.2"
></a-light>
<!-- balok -->
<a-box id="box1" color="#aa0000" position="0 1.5 -3"></a-box>
<a-box id="box2" rotation="0 0 45" scale="0.5 1 0.5" color="#00aa00" position="2 1 -3"></a-box>
<a-box id="box3" color="#aaaa00" position="-2 1 -3"></a-box>
</a-scene>
</body>
</html>