kontakt.html 879 Bytes
Newer Older
Wolfgang Knopki's avatar
Wolfgang Knopki committed
1
2
<!DOCTYPE html>
<html>
Alfakhori's avatar
Alfakhori committed
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
  <head>
    <title>AR.js Simple Marker Example</title>
    <script src="https://aframe.io/releases/1.2.0/aframe.min.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/@argonjs/argon@2.8.0/dist/argon.min.js"></script>
    <script src="https://raw.githack.com/AR-js-org/AR.js/master/aframe/build/aframe-ar-nft.js"></script>
  </head>
  <body>
    <a-scene embedded arjs="sourceType: webcam; detectionMode: mono_and_matrix; matrixCodeType: 3x3;">
      <a-nft
        type="nft"
        url="assets/marker.patt"
        smooth="true"
        smoothCount="10"
        smoothTolerance=".01"
        smoothThreshold="5"
      >
        <a-entity
          gltf-model="assets/scene.gltf"
          scale="0.01 0.01 0.01"
          position="0 0 0"
        ></a-entity>
      </a-nft>
      <a-entity camera></a-entity>
    </a-scene>
  </body>
Wolfgang Knopki's avatar
Wolfgang Knopki committed
28
</html>
Alfakhori's avatar
Alfakhori committed
29