فهرست منبع

Color: Added setScalar.

Mr.doob 10 سال پیش
والد
کامیت
05ade8feea
1فایلهای تغییر یافته به همراه8 افزوده شده و 0 حذف شده
  1. 8 0
      src/math/Color.js

+ 8 - 0
src/math/Color.js

@@ -40,6 +40,14 @@ THREE.Color.prototype = {
 
 
 	},
 	},
 
 
+	setScalar: function ( scalar ) {
+
+		this.r = scalar;
+		this.g = scalar;
+		this.b = scalar;
+
+	},
+
 	setHex: function ( hex ) {
 	setHex: function ( hex ) {
 
 
 		hex = Math.floor( hex );
 		hex = Math.floor( hex );

粤ICP备19079148号