This commit is contained in:
Anuken
2020-09-30 14:50:05 -04:00
parent d2728c2bf0
commit 03d676403f
5 changed files with 6 additions and 11 deletions

View File

@@ -97,17 +97,15 @@ public class Drawf{
}
public static void liquid(TextureRegion region, float x, float y, float alpha, Color color, float rotation){
Draw.color(color);
Draw.alpha(alpha);
Draw.color(color, alpha);
Draw.rect(region, x, y, rotation);
Draw.reset();
Draw.color();
}
public static void liquid(TextureRegion region, float x, float y, float alpha, Color color){
Draw.color(color);
Draw.alpha(alpha);
Draw.color(color, alpha);
Draw.rect(region, x, y);
Draw.reset();
Draw.color();
}
public static void dashCircle(float x, float y, float rad, Color color){