Pārlūkot izejas kodu

Move missplaced variable declaration

Tristan VALCKE 7 gadi atpakaļ
vecāks
revīzija
b5dcd1fb29
1 mainītis faili ar 1 papildinājumiem un 2 dzēšanām
  1. 1 2
      examples/js/nodes/accessors/CameraNode.js

+ 1 - 2
examples/js/nodes/accessors/CameraNode.js

@@ -52,11 +52,10 @@ THREE.CameraNode.prototype.setScope = function( scope ) {
 	this.scope = scope;
 
 	switch ( scope ) {
-			
-		var camera = this.camera
 
 		case THREE.CameraNode.DEPTH:
 
+			var camera = this.camera
 			this.near = new THREE.FloatNode( camera ? camera.near : 1 );
 			this.far = new THREE.FloatNode( camera ? camera.far : 1200 );