-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paths2-1.html
49 lines (49 loc) · 1.14 KB
/
s2-1.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
<html>
<head>
<script src="https://aframe.io/releases/0.8.0/aframe.min.js"></script>
</head>
<title>Step2-1</title>
<body>
<a-scene>
<!-- Tree -->
<a-entity class="small-tree">
<a-cone
color="#416132"
height="0.8"
segments-height="0"
segments-radial="15"
radius-bottom="0.4"
radius-top="0.001"
>
</a-cone>
<a-cone
color="#416132"
height="0.9"
segments-height="0"
segments-radial="15"
radius-bottom="0.5"
radius-top="0.001"
position="0 -0.3 0"
></a-cone
><a-cone
color="#416132"
height="1"
segments-height="0"
segments-radial="15"
radius-bottom="0.6"
radius-top="0.001"
position="0 -0.7 0"
roughness="1"
></a-cone>
<a-cylinder
color="#8D4126"
height="0.6"
radius="0.1"
segments-height="0"
segments-radial="0"
position="0 -1.5 0"
></a-cylinder>
</a-entity>
</a-scene>
</body>
</html>