无法让Look Controls工作

时间:2016-09-06 15:28:54

标签: reactjs aframe webvr

我无法让外观控件与aframe-react一起使用。 WASD控制工作正常,资产看起来很好。

import React from 'react';
import 'aframe';
import {Entity, Scene, Animation} from 'aframe-react';

class AugmentedForest extends React.Component {
  render() {
    return (
      <Scene>
        <a-assets>
          <img id="forest-360" src="./images/forest_360.JPG"/>
        </a-assets>
        <Entity>
          <Entity camera="" look-controls="" wasd-controls=""/>
        </Entity>
        <a-sky src="#forest-360"/>
      </Scene>
    );
  }
}

export default AugmentedForest;

0 个答案:

没有答案