-
Notifications
You must be signed in to change notification settings - Fork 2
/
LightingTutorial.html
50 lines (48 loc) · 1.32 KB
/
LightingTutorial.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lighting Tutorial</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="directional"
position="5 1.5 -3"
target="#box3"
intensity="1"
angle =30
penumbra = 0.2
></a-light>
<!-- box -->
<a-box id="box1" scale="0.897 0.897 0.897" rotation="0 148.015 0" animation="loop: NaN" color="#aa0000" position="0 1 -5.62933"></a-box>
<a-box id="box2" material="color: #a2090d" 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>