Browse Source

Make Color.setScalar returns this. (#9885)

aardgoose 8 years ago
parent
commit
4ce415a6a8
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/math/Color.js

+ 2 - 0
src/math/Color.js

@@ -53,6 +53,8 @@ Color.prototype = {
 		this.g = scalar;
 		this.b = scalar;
 
+		return this;
+
 	},
 
 	setHex: function ( hex ) {