Skip to content
This repository has been archived by the owner on Nov 5, 2022. It is now read-only.

Commit

Permalink
Final update
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatOneCalculator committed Jul 8, 2021
1 parent 7630125 commit 3d7033d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Binary file removed dumpyuwu.gif
Binary file not shown.
4 changes: 3 additions & 1 deletion src/main/java/dev/t1c/dumpy/sus.java
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,13 @@ public static void main(String[] args) throws Exception {
int bufferedImageArraySize = 6;
int count1Check = 6;
int count2Reset = 5;
String modestring = "";

if (mode.equals("furry")) {
bufferedImageArraySize--;
count1Check--;
count2Reset--;
modestring = "_twist";
}
// Actually makes the frames
BufferedImage[] frames = new BufferedImage[bufferedImageArraySize];
Expand All @@ -175,7 +177,7 @@ public static void main(String[] args) throws Exception {
for (int x = 0; x < tx; x++) {

// Grabs appropriate pixel frame
var pixelI = main.getResource("dumpy/" + count + ".png");
var pixelI = main.getResource("dumpy/" + count + modestring + ".png");
BufferedImage pixel = ImageIO.read(pixelI);
pixel = shader(pixel, image.getRGB(x, y));
// overlays it (if not null)
Expand Down

0 comments on commit 3d7033d

Please sign in to comment.