Browse Source

Box3Helper: Fix invalid character.

Mugen87 6 years ago
parent
commit
cb1a45bb0a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/helpers/Box3Helper.js

+ 1 - 1
src/helpers/Box3Helper.js

@@ -15,7 +15,7 @@ function Box3Helper( box, color ) {
 
 	this.box = box;
 
-	color = color || 0xffff00;
+	color = color || 0xffff00;
 
 	var indices = new Uint16Array( [ 0, 1, 1, 2, 2, 3, 3, 0, 4, 5, 5, 6, 6, 7, 7, 4, 0, 4, 1, 5, 2, 6, 3, 7 ] );