Explorar el Código

TransformControls: fix duplicate material

Same material was defined twice in the same scope.
Michael Turkeev hace 7 años
padre
commit
30b71c78ee
Se han modificado 1 ficheros con 0 adiciones y 3 borrados
  1. 0 3
      examples/js/controls/TransformControls.js

+ 0 - 3
examples/js/controls/TransformControls.js

@@ -688,9 +688,6 @@ THREE.TransformControlsGizmo = function () {
 	var matLineMagenta = gizmoLineMaterial.clone();
 	matLineMagenta.color.set( 0xff00ff );
 
-	var matLineBlue = gizmoLineMaterial.clone();
-	matLineBlue.color.set( 0x0000ff );
-
 	var matLineYellow = gizmoLineMaterial.clone();
 	matLineYellow.color.set( 0xffff00 );