OrbitControls with damping

8.5k Views Asked by At

Is there a way, plugin or idea to give the THREE.js OrbitControls the effect of inertia when spinning?

I would like to spin a world-sphere with some damping like this: http://stemkoski.github.io/Three.js/Polyhedra.html

The original OrbitControls behaviour looks like this: http://threejs.org/examples/#misc_controls_orbit

1

There are 1 best solutions below

2
On BEST ANSWER

OrbitControls now supports damping / inertia.

controls = new THREE.OrbitControls( camera, renderer.domElement );
controls.enableDamping = true;
controls.dampingFactor = 0.05;

Then in your animation loop add

controls.update(); // required if controls.enableDamping = true, or if controls.autoRotate = true

three.js r.108