idk what im doing at this point

This commit is contained in:
ThisIsALegitUsername 2023-02-23 15:04:51 +00:00
parent 0c9587107e
commit 7eb793ceee
4 changed files with 27321 additions and 58749 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -33,9 +33,10 @@ public class CapeUi extends GuiScreen {
ImageData loadedCape = ImageData.loadImageFile(result.fileData); ImageData loadedCape = ImageData.loadImageFile(result.fileData);
if(loadedCape != null){ if(loadedCape != null){
CapeManager.capeLocation = Minecraft.getMinecraft().getTextureManager().getDynamicTextureLocation("uploadedcape", new DynamicTexture(loadedCape)); CapeManager.capeLocation = Minecraft.getMinecraft().getTextureManager().getDynamicTextureLocation("uploadedcape", new DynamicTexture(loadedCape));
Minecraft.getMinecraft().displayGuiScreen(null);
//Minecraft.getMinecraft().getTextureManager().bindTexture(CapeManager.capeLocation); //Minecraft.getMinecraft().getTextureManager().bindTexture(CapeManager.capeLocation);
} else { } else {
EagRuntime.showPopup("The selected file '" + result.fileName + "' is not a PNG file!"); EagRuntime.showPopup("The selected file '" + result.fileName + "' is not an image file!");
} }
} }
} }

View File

@ -95,7 +95,7 @@ public class ClickGUI extends GuiScreen {
} }
if(s instanceof CustomRectSettingDraw){ if(s instanceof CustomRectSettingDraw){
if(isMouseInside(mouseX, mouseY, x+20, height+36.5+var, x+24+fr.getStringWidth(s.name), height+var+54.5)){ if(isMouseInside(mouseX, mouseY, x+21, height+41+var, x+27+fr.getStringWidth(s.name), height+var+53)){
((CustomRectSettingDraw)s).onChange(); ((CustomRectSettingDraw)s).onChange();
} }
} }
@ -179,8 +179,8 @@ public class ClickGUI extends GuiScreen {
for (int amogus = 0; amogus < this.modWatching.settings.size(); amogus++) { for (int amogus = 0; amogus < this.modWatching.settings.size(); amogus++) {
Setting s = this.modWatching.settings.get(amogus); Setting s = this.modWatching.settings.get(amogus);
if(s instanceof CustomRectSettingDraw){ if(s instanceof CustomRectSettingDraw){
Gui.drawRect(x+21, height+39+var, x+27+fr.getStringWidth(s.name), height+var+51, isMouseInside(mouseX, mouseY, x+21, height+39+var, x+26+fr.getStringWidth(s.name), height+var+51) ? new Color(20, 20, 100, 70).getRGB() : new Color(20, 50, 170).getRGB()); Gui.drawRect(x+21, height+41+var, x+27+fr.getStringWidth(s.name), height+var+53, isMouseInside(mouseX, mouseY, x+21, height+39+var, x+26+fr.getStringWidth(s.name), height+var+51) ? new Color(20, 20, 100, 70).getRGB() : new Color(20, 50, 170).getRGB());
RenderUtils.drawRectOutline(x+21, height+39+var, x+27+fr.getStringWidth(s.name), height+var+51, -1); RenderUtils.drawRectOutline(x+21, height+41+var, x+27+fr.getStringWidth(s.name), height+var+53, -1);
fr.drawStringWithShadow(s.name, this.x + 24, height +41 + var, -1); fr.drawStringWithShadow(s.name, this.x + 24, height +41 + var, -1);
var += 3; var += 3;
} }