|
пре 3 недеља | |
---|---|---|
.. | ||
dist | пре 3 недеља | |
node_modules | пре 3 недеља | |
src | пре 3 недеља | |
test | пре 3 недеља | |
.npmignore | пре 3 недеља | |
LICENSE | пре 3 недеља | |
README.md | пре 3 недеља | |
mocha.opts | пре 3 недеља | |
package.json | пре 3 недеља | |
tsconfig.json | пре 3 недеља | |
tslint.json | пре 3 недеља |
ThreeJS OrbitControls as a standalone and typescript compatible npm module.
npm install --save three-orbitcontrols-ts
import * as THREE from 'three';
import { OrbitControls } from 'three-orbitcontrols-ts';
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)
All credit goes to OrbitControls.js contributors.