Skip to content

Commit f40deca

Browse files
committed
color util fn
1 parent c5817d4 commit f40deca

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

color/Colorf.cs

+4-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,10 @@ public void Subtract(Colorf o)
7373
{
7474
r -= o.r; g -= o.g; b -= o.b; a -= o.a;
7575
}
76-
76+
public Colorf WithAlpha(float newAlpha)
77+
{
78+
return new Colorf(r, g, b, newAlpha);
79+
}
7780

7881

7982
public static Colorf operator -(Colorf v)

0 commit comments

Comments
 (0)