5x5 burst drill

This commit is contained in:
Anuken
2021-12-28 19:18:16 -05:00
parent 37bc06d14a
commit 0ede0dbf0c
18 changed files with 139 additions and 39 deletions

View File

@@ -95,6 +95,10 @@ public class Drawf{
}
}
public static void additive(TextureRegion region, Color color, float x, float y){
additive(region, color, x, y, 0f, Layer.blockAdditive);
}
public static void additive(TextureRegion region, Color color, float x, float y, float rotation){
additive(region, color, x, y, rotation, Layer.blockAdditive);
}