ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/booklet/page/PageText.java

29 lines
900 B
Java
Raw Normal View History

2015-08-29 23:01:13 +02:00
/*
* This file ("PageText.java") is part of the Actually Additions Mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* <EFBFBD> 2015 Ellpeck
*/
package ellpeck.actuallyadditions.booklet.page;
import ellpeck.actuallyadditions.booklet.GuiBooklet;
public class PageText extends BookletPage{
public PageText(int id){
super(id);
}
@Override
public void render(GuiBooklet gui, int mouseX, int mouseY){
2015-08-30 04:02:28 +02:00
String text = gui.currentPage.getText();
if(text != null && !text.isEmpty() && !text.contains("booklet.")){
gui.unicodeRenderer.drawSplitString(text.replace("<n>", "\n"), gui.guiLeft+14, gui.guiTop+11, 115, 0);
}
2015-08-29 23:01:13 +02:00
}
}