Vanquish weapons & sprite tweaks

This commit is contained in:
Anuken
2021-12-13 00:08:01 -05:00
parent 53b55a9f0e
commit 32cb25af62
8 changed files with 88 additions and 9 deletions

View File

@@ -516,7 +516,7 @@ public class Generators{
Pixmap slice = pix.crop((int)type.treadRect.x, (int)type.treadRect.y, 1, (int)type.treadRect.height);
int frames = type.treadFrames;
for(int i = 0; i < frames; i++){
int pullOffset = 4;
int pullOffset = type.treadPullOffset;
Pixmap frame = new Pixmap(slice.width, slice.height);
for(int y = 0; y < slice.height; y++){
int idx = y + i;