-
Notifications
You must be signed in to change notification settings - Fork 4
/
Navigation-different scene.html
77 lines (61 loc) · 2.14 KB
/
Navigation-different scene.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!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: #000000 inspectpr-plugin-recast">
<!-- green box | Parent Entity -->
<!-- camera righ -->
<a-entity movement-controls="speed: 0.15; constrainToNavMesh: true" position="0 0 2">
<!-- Camera -->
<a-entity camera position="0 1.6 0"
look-controls="pointerLockEnabled: true">
<a-cursor></a-cursor>
</a-entity>
</a-entity>
<a-entity>
<a-entity>
<!-- Ground -->
<a-plane color="#FFFFFF" shader="flat" rotation="-90 0 0" scale="8 6 1">
</a-plane>
<a-cylinder color="#AA0000" radius="0.5" position="1.5 0.5 0">
</a-cylinder>
<a-box color="#00AA00" width="0.5" depth="3" position="-1.5 0.5 0">
</a-box>
</a-entity>
<a-entity rotation="0 180 0" position="0 0 -6">
<!-- Ground -->
<a-plane color="#FFFFFF" shader="flat" rotation="-90 0 0" scale="8 6 1">
</a-plane>
<a-cylinder color="#AA0000" radius="0.5" position="1.5 0.5 0">
</a-cylinder>
<a-box color="#00AA00" width="0.5" depth="3" position="-1.5 0.5 0">
</a-box>
</a-entity>
</a-entity>
<a-entity rotation="0 180 0" position="8 0 0">
<a-entity>
<!-- Ground -->
<a-plane color="#FFFFFF" shader="flat" rotation="-90 0 0" scale="8 6 1">
</a-plane>
<a-cylinder color="#AA0000" radius="0.5" position="1.5 0.5 0">
</a-cylinder>
<a-box color="#00AA00" width="0.5" depth="3" position="-1.5 0.5 0">
</a-box>
</a-entity>
<a-entity rotation="0 180 0" position="0 0 -6">
<!-- Ground -->
<a-plane color="#FFFFFF" shader="flat" rotation="-90 0 0" scale="8 6 1">
</a-plane>
<a-cylinder color="#AA0000" radius="0.5" position="1.5 0.5 0">
</a-cylinder>
<a-box color="#00AA00" width="0.5" depth="3" position="-1.5 0.5 0">
</a-box>
</a-entity>
</a-entity>
</a-scene>
</body>
</html>