aframe-drag-look-controls-component
v0.1.7
Published
Drag Look Controls component for A-Frame VR.
Downloads
15
Maintainers
Readme
AFrame Drag Look Controls Component
This is basically same as look-controls
component besides the canvas moves to the way you drag.
For detail, please check look-controls page.
Properties
| Property | Description | Default Value |
| -------- | ----------- | ------------- |
|enabled
|Whether look controls are enabled.|true|
Usage
The drag-look-controls
component is usually used alongside the [camera component][components-camera].
Browser Installation
Install and use by directly including the browser files:
<head>
<title>My A-Frame Scene</title>
<script src="https://aframe.io/releases/0.2.0/aframe.min.js"></script>
<script src="https://rawgit.com/mayognaise/aframe-drag-look-controls-component/master/dist/aframe-drag-look-controls-component.min.js"></script>
</head>
<body>
<a-scene>
<a-entity camera drag-look-controls></a-entity>
</a-scene>
</body>
NPM Installation
Install via NPM:
npm i -D aframe-drag-look-controls-component
Then register and use.
import 'aframe'
import 'aframe-drag-look-controls-component'