-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
32 lines (29 loc) · 1.37 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Main Lobby</title>
<script src="https://aframe.io/releases/1.2.0/aframe.min.js"></script>
<script src="aframe-web-portals.umd.js"></script>
<!--<script src="https://unpkg.com/[email protected]/dist/aframe-web-portals.umd.js"></script>-->
</head>
<body>
<a-scene>
<!--Camera-->
<a-entity position="0 1.6 0" camera wasd-controls="acceleration: 15;" look-controls="pointerLockEnabled: false">
<a-cursor position="0 0 -.05" scale=".04 .04 1"></a-cursor>
<!--For Collision Detection-->
<a-cylinder radius="0.75"></a-cylinder>
</a-entity>
<!--Portal-->
<a-entity position="-3.75 0 -6" web-portal="url:Earth Preview.html; text:Earth;"></a-entity>
<a-entity position="-1.25 0 -6" web-portal="url:House.html; text:A House;"></a-entity>
<a-entity position="1.25 0 -6" web-portal="url:https://therealdigitalmaster.github.io/-DigitalMaster-Search; text:Search;"></a-entity>
<a-entity position="3.75 0 -6" web-portal="url:https://nebulaproxy.io; text:Proxy;"></a-entity>
<!--Environment-->
<a-sky color="#aff"></a-sky>
<a-plane rotation="-90 0 0" width="16" height="16" color="#3fa841"></a-plane>
<a-box position="0 2.5 -8" width="16" height="5" depth=".25" color="#a8413f"></a-box>
</a-scene>
</body>
</html>