-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
19 lines (14 loc) · 888 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script src="https://aframe.io/releases/0.7.1/aframe.min.js"></script>
<!-- include ar.js for A-Frame -->
<script src="https://jeromeetienne.github.io/AR.js/aframe/build/aframe-ar.js"></script>
<body style='margin : 0px; overflow: hidden;'>
<a-scene embedded arjs='trackingMethod: best;'>
<a-assets>
<a-asset-item id="busterDrone" src="./happy_birthday_cake/scene.gltf"></a-asset-item>
</a-assets>
<!-- use your gltf model -->
<a-entity rotate"180" gltf-model="#busterDrone"></a-entity>
<a-text value="!!!!!!!!!!!!!!!!!!!!!!!Happy Birthday :)"></a-text>
<a-marker-camera type='pattern' url='./pattern-marker.patt'></a-marker-camera>
</a-scene>
</body>