@three-ts/orbit-controls
TypeScript icon, indicating that this package has built-in type declarations

1.4.7 • Public • Published

Three.js OrbitControls Typescript compatible package.

Installation

npm install --save @three-ts/orbit-controls

Usage

import * as THREE from 'three';
import { OrbitControls } from '@three-ts/orbit-controls';

const camera = new THREE.SomeCamera(...);
const controls = new OrbitControls(camera, renderer.domElement);

// How far you can orbit vertically, upper and lower limits.
controls.minPolarAngle = 0;
controls.maxPolarAngle = Math.PI;


// How far you can dolly in and out ( PerspectiveCamera only )
controls.minDistance = 0;
controls.maxDistance = Infinity;

this.enableZoom = true; // Set to false to disable zooming
this.zoomSpeed = 1.0;


controls.enablePan = true; // Set to false to disable panning (ie vertical and horizontal translations)

controls.enableDamping = true; // Set to false to disable damping (ie inertia)
controls.dampingFactor = 0.25;

Credit

All credit goes to OrbitControls.js contributors.

Package Sidebar

Install

npm i @three-ts/orbit-controls

Weekly Downloads

848

Version

1.4.7

License

MIT

Unpacked Size

61.4 kB

Total Files

10

Last publish

Collaborators

  • ipritoflex