Pārlūkot izejas kodu

OrbitControl: Fixed typo.

Mr.doob 10 gadi atpakaļ
vecāks
revīzija
140954c31d
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. 2 2
      examples/js/controls/OrbitControls.js

+ 2 - 2
examples/js/controls/OrbitControls.js

@@ -509,11 +509,11 @@
 
 				if ( dollyDelta.y > 0 ) {
 
-					contraint.dollyIn( getZoomScale() );
+					constraint.dollyIn( getZoomScale() );
 
 				} else if ( dollyDelta.y < 0 ) {
 
-					contraint.dollyOut( getZoomScale() );
+					constraint.dollyOut( getZoomScale() );
 
 				}