0.0.2 • Published 8 years ago

pointer-lock-plus v0.0.2

Weekly downloads
24
License
MIT
Repository
github
Last release
8 years ago

Pointer Lock Plus

Provides additional features like sensitivity to pointer-lock.

Code Example

import lock from 'pointer-lock-plus';

const pointer = lock({
  element: canvas,
  sensitivity: 0.0015,
  onData(dx, dy) {
    console.log(dx);
    console.log(dy);
  },
});

Installation

npm install pointer-lock-plus

API Reference

It has the same hooks as pointer-lock events, prefixed with on (onData, onClose, etc) and the the same callbacks are also available.

Contributors

Contributions are welcome and suggestions on more stuff this library should offer.