-
Notifications
You must be signed in to change notification settings - Fork 2
/
index-m.html
31 lines (25 loc) · 931 Bytes
/
index-m.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://aframe.io/releases/1.3.0/aframe.min.js"></script>
<script src="https://rawcdn.githack.com/AR-js-org/AR.js/master/aframe/build/aframe-ar.js"></script>
</head>
<body style='margin : 0px; overflow: hidden;'>
<a-scene
arjs="sourceType: webcam; debugUIEnabled: false;"
embedded
renderer="logarithmicDepthBuffer: true;"
vr-mode-ui="enabled: false"
id="scene">
<a-assets>
<a-asset-item id="chained" src="./assets/International-Space-Station.glb"></a-asset-item>
</a-assets>
<a-marker id="custom-1" type= "pattern" url="./assets/markers/pattern-tri.patt">
<a-entity id="chained-gltf" position="0.5 0.5 0" scale="0.5 0.5 0.5" gltf-model="#chained"></a-entity>
</a-marker>
<a-entity camera></a-entity>
</a-scene>
</body>
</html>