Many crazy things

This commit is contained in:
Anuken
2021-11-14 23:10:15 -05:00
parent 70cf55f314
commit 486622e3e4
86 changed files with 472 additions and 318 deletions

View File

@@ -128,13 +128,13 @@ public class Drawf{
}
public static void liquid(TextureRegion region, float x, float y, float alpha, Color color, float rotation){
Draw.color(color, alpha);
Draw.color(color, alpha * color.a);
Draw.rect(region, x, y, rotation);
Draw.color();
}
public static void liquid(TextureRegion region, float x, float y, float alpha, Color color){
Draw.color(color, alpha);
Draw.color(color, alpha * color.a);
Draw.rect(region, x, y);
Draw.color();
}