diff --git a/examples/webgl_loader_ldraw.html b/examples/webgl_loader_ldraw.html
index 6b8a48883db1b1..4c656a8f558589 100644
--- a/examples/webgl_loader_ldraw.html
+++ b/examples/webgl_loader_ldraw.html
@@ -102,6 +102,7 @@
scene.environment = pmremGenerator.fromScene( new RoomEnvironment() ).texture;
controls = new OrbitControls( camera, renderer.domElement );
+ controls.enableDamping = true;
//
@@ -326,6 +327,7 @@
function animate() {
requestAnimationFrame( animate );
+ controls.update();
render();
}