-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug.html
More file actions
46 lines (42 loc) · 1.92 KB
/
debug.html
File metadata and controls
46 lines (42 loc) · 1.92 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ARViN</title>
<link rel="stylesheet" type="text/css" href="a-styles.css">
<!-- A-Frame -->
<script src="https://aframe.io/releases/0.9.0/aframe.min.js"></script>
<!-- AR.js -->
<script src="https://jeromeetienne.github.io/AR.js/aframe/build/aframe-ar.js"></script>
<!-- A-Frame Components -->
<script src="https://unpkg.com/aframe-animation-component@^4.1.1/dist/aframe-animation-timeline-component.min.js"></script>
<script src="https://unpkg.com/aframe-animation-timeline-component@1.6.0/dist/aframe-animation-timeline-component.min.js"></script>
<!-- Text Antialisaing -->
<style>
html {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
</style>
</head>
<body style='margin : 0px; overflow: hidden;'>
<a-scene
outline
embedded
renderer="antiailas:true; colorManagement: true; logarithmicDepthBuffer: true;"
arjs="detectionMode: mono_and_matrix; matrixCodeType: 3x3; debugUIEnabled: false; sourceWidth: 3840; sourceHeight: 2160; displayWidth: 3840; displayHeight: 2160;"
loading-screen="dotsColor: pink; backgroundColor: white"
vr-mode-ui="enabled: false"
stats
>
<a-marker type='barcode' value='0'>
<a-image rotation="-90 0 0" width="4" height="7.6" src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7a/Wikipe-tan_full_length.svg/2000px-Wikipe-tan_full_length.svg.png"></a-image>
</a-marker>
<a-marker preset="hiro">
<a-image rotation="-90 0 0" width="4" height="7.6" src="https://upload.wikimedia.org/wikipedia/commons/thumb/7/7a/Wikipe-tan_full_length.svg/2000px-Wikipe-tan_full_length.svg.png"></a-image>
</a-marker>
<a-entity camera></a-entity>
</a-scene>
</body>
</html>