如何让Daydream Controller在AFrame中工作

时间:2018-02-10 16:59:54

标签: aframe

我疯狂地尝试让白日梦控件在我的AFrame应用程序中运行。我不确定这是我的代码还是我的浏览器......有没有人有一个应该使用白日梦控制器的例子?

1 个答案:

答案 0 :(得分:1)

这应该很简单。只需使用官方daydream component

<a-entity daydream-controls="hand: left"></a-entity>
<a-entity daydream-controls="hand: right"></a-entity>

并利用已发生的事件:

AFRAME.registerComponent("daydream-listener", {
 init: function() {
  this.el.addEventListener("trackpaddown", (e) => {
    console.log("track down: ");
    console.log(e);
  })
 }
})

<a-entity daydream-controls daydream-listener></a-entity>

live fiddle here