第8墙图片目标无法追踪图片

时间:2019-12-04 06:19:08

标签: 8thwall-xr 8thwall-web

我已经从github下载了第8幅墙式网络入门项目。我正在尝试在本地运行传单演示。

Flyer演示index.html,我已使用第8个墙控台将应用程序密钥替换为新创建的Web项目。

接下来,下面的代码用于实现图像目标功能

<!-- Note: "name:" must be set to the name of the image target uploaded to the 8th Wall Console -->
    <a-entity
      xrextras-named-image-target="name: video-target"
      xrextras-play-video="video: #jelly-video; thumb: #jelly-thumb; canstop: true"
      geometry="primitive: plane; height: 1; width: 0.79;">
    </a-entity>

    <!-- Note: "name:" must be set to the name of the image target uploaded to the 8th Wall Console -->
    <a-entity xrextras-named-image-target="name: model-target">
      <!-- Add a child entity that can be rotated independently of the image target. -->
      <a-entity xrextras-one-finger-rotate gltf-model="#jelly-glb"></a-entity>
    </a-entity>

因此,为了使上述代码正常工作,我已将传单演示中的images文件夹中的两个图像上传到上述代码中提及的名称的第8壁式控制台。运行此程序时,图像目标未同时检测到两个图像。

当我在互联网以及here上看到文档时,我发现当您在8th wall console上上传图像目标时,有保存和启用的选项,但是在上传时我看不到“启用”选项。这是图像目标无法正常工作的原因,还是我需要发布第8壁式网络应用程序,其中包含要使该图像目标起作用的价格?

请帮助

1 个答案:

答案 0 :(得分:0)

根据您的代码段,xrextras-named-image-target组件正在寻找名为“ video-target”和“ model-target”的图像目标。确保这些字符串与上传到控制台的图像目标的名称匹配。

此外,确保将图像目标设置为“自动加载”。如果没有,请编辑图像目标,选中“自动加载”并保存图像目标。