Exemplo n.º 1
0
 public static GsColor Darken(this GsColor color, float amt = 0.5f)
 {
     return(GsMath.Lerp(color, GsColor.Black, amt));
 }
Exemplo n.º 2
0
 public static GsColor Lighten(this GsColor color, float amt = 0.5f)
 {
     return(GsMath.Lerp(color, GsColor.White, amt));
 }