mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2025-02-13 16:24:23 +01:00
Removed some debug rendering
This commit is contained in:
parent
d590c8d9d6
commit
0b7953393e
1 changed files with 0 additions and 19 deletions
|
@ -141,25 +141,6 @@ public class GuiPonySettings extends GameGui {
|
||||||
renderBackground();
|
renderBackground();
|
||||||
super.render(mouseX, mouseY, partialTicks);
|
super.render(mouseX, mouseY, partialTicks);
|
||||||
content.render(mouseX, mouseY, partialTicks);
|
content.render(mouseX, mouseY, partialTicks);
|
||||||
|
|
||||||
GlStateManager.pushMatrix();
|
|
||||||
GlStateManager.translated(-content.getMouseXOffset(), -content.getMouseYOffset(), 0);
|
|
||||||
content.getContentBounds()
|
|
||||||
.debugMeasure();
|
|
||||||
|
|
||||||
for (Element i : content.children()) {
|
|
||||||
if (i instanceof IBounded) {
|
|
||||||
((IBounded)i).getBounds().draw(0x80FFFF00);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
GlStateManager.popMatrix();
|
|
||||||
|
|
||||||
for (Element i : children()) {
|
|
||||||
if (i instanceof IBounded) {
|
|
||||||
((IBounded)i).getBounds().draw(0x800000FF);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue