-
Notifications
You must be signed in to change notification settings - Fork 4
/
Scale - Relative scale and Reflection.html
50 lines (43 loc) · 1.37 KB
/
Scale - Relative scale and Reflection.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>
<head>
<title>Navigation Meshes</title>
<script src="https://aframe.io/releases/1.0.4/aframe.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/donmccurdy/[email protected]/dist/aframe-extras.min.js"></script>
</head>
<body>
<a-scene background="color: #FFFFFF inspectpr-plugin-recast">
<!-- green box | Parent Entity -->
<a-box color="#689F38"
width="4"
height="2"
depth="0.2"
position="0 1 -7"
rotation="90 0 0"
scale="-1 1 2">
<!-- circle | Child entity-->
<a-circle color="#333333"
side="double"
position="2 0 0"
rotation="90 0 0"></a-circle>
</a-box>
<!--- Circ;e -->
<a-circle color="#FFC107"
side="double"
position="-2 1 -8"
scale="2 2 1">
</a-circle>
<!-- cylinder -->
<a-cylinder color="#616161"
radius="2"
height="2"
segments-radial="12"
open-ended="true"
side="double"
position="0 0 -3"
rotation="0 -90 90"
scale="2 2 2">
</a-cylinder>
</a-scene>
</body>
</html>