如何使用AR.js处理同一标记的多个实例

时间:2019-06-06 13:17:10

标签: javascript augmented-reality aframe ar.js

我想用AR.js创建一个游戏,其中玩家必须放置同一标记的多个实例(以便使该特定标记关联的载具的多个实例),但是我无法获得它工作。

我找不到任何提及此操作方法的文档。

我为此使用a-frame和aframe-ar.js。 我的代码:

<body style="margin : 0px; overflow: hidden;">
  <a-scene embedded arjs='trackingMethod: best; patternRatio: 0.9; debugUIEnabled: false;'>
    <a-marker emitevents="true" id="logo-marker" type="pattern" url="markers/marker.patt" markerhandler>
      <a-plane opacity="0.5" rotation="-90 0 0" position="0 0 0" color="red" height="1" width="1"></a-plane>
    </a-marker>
    <a-entity camera></a-entity>
  </a-scene> 
</body>

AR.js有什么方法吗?

0 个答案:

没有答案