소스 검색

#18051: Use common name for Color type argument

Xavier Cho 7 년 전
부모
커밋
94edd92248
1개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 5 5
      modules/mono/glue/cs_files/Color.cs

+ 5 - 5
modules/mono/glue/cs_files/Color.cs

@@ -263,14 +263,14 @@ namespace Godot
             );
         }
 
-        public Color LinearInterpolate(Color b, float t)
+        public Color LinearInterpolate(Color c, float t)
         {
             var res = this;
 
-            res.r += t * (b.r - r);
-            res.g += t * (b.g - g);
-            res.b += t * (b.b - this.b);
-            res.a += t * (b.a - a);
+            res.r += t * (c.r - r);
+            res.g += t * (c.g - g);
+            res.b += t * (c.b - b);
+            res.a += t * (c.a - a);
 
             return res;
         }