소스 검색

TransformControls: fix duplicate material

Same material was defined twice in the same scope.
Michael Turkeev 7 년 전
부모
커밋
30b71c78ee
1개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  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 );