Marcel Ennix
Marcel Ennix

Reputation: 1366

OrbitControls with damping

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

Upvotes: 10

Views: 8833

Answers (1)

WestLangley
WestLangley

Reputation: 104783

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

Upvotes: 21

Related Questions