An Orbit Controls component for A-Frame VR.
Property | Description | Default Value |
---|---|---|
Install and use by directly including the browser files:
<head>
<title>My A-Frame Scene</title>
<script src="https://aframe.io/releases/latest/aframe.min.js"></script>
<script src="https://raw.githubusercontent.com/subsumo/aframe-orbit-controls/master/dist/aframe-orbit-controls-component.min.js"></script>
</head>
<body>
<a-scene>
<a-camera target="#target" distance="1" orbit-controls look-controls-enabled=false wasd-controls-enabled=true position="0 0 0" ></a-camera>
<a-sphere id="target" position="0 0 1" radius="0.1" color="#EF2D5E"></a-sphere>
<a-sky src="https://upload.wikimedia.org/wikipedia/commons/8/83/Equirectangular_projection_SW.jpg"></a-sky>
</a-scene>
</body>
Install via NPM:
npm install aframe-orbit-controls-component
Then register and use.
require('aframe');
require('aframe-orbit-controls-component');