-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestClinder.html
55 lines (54 loc) · 1.09 KB
/
testClinder.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
<html>
<head>
<script src="https://aframe.io/releases/0.8.0/aframe.min.js"></script>
</head>
<body>
<a-scene>
<a-cylinder
position="1.2 1 0"
radius="0.1"
height="1.7"
depth="0.1"
color="#8D4126"
geometry="segmentsRadial: 0;"
>
</a-cylinder>
<a-cylinder
position="0.8 1 0"
radius="0.1"
height="1.7"
depth="0.1"
color="#8D4126"
geometry="segmentsRadial: 0;"
>
</a-cylinder>
<a-cylinder
position="0.4 1 0"
radius="0.1"
height="1.7"
depth="0.1"
color="#8D4126"
geometry="segmentsRadial: 0;"
>
</a-cylinder>
<a-cylinder
position="0 1 0"
radius="0.1"
height="1.7"
depth="0.1"
color="#8D4126"
geometry="segmentsRadial: 0;"
>
</a-cylinder>
<a-box
position="-0.8 1 0"
height="0.8"
width="1"
depth="0.05"
color="#8D4126"
map="bricks"
>
</a-box>
</a-scene>
</body>
</html>