There is a method showText("text",x,y) but it still writes the same white text that is boring. How can I change it? For example I want Arial, bold, yellow...or I dont know...


1 2 3 4 | public boolean checkTouching(Class clss) { return isTouching(clss); } |
1 2 3 4 5 6 7 8 9 | private boolean is1touching2() { boolean areTouching = false ; for (Object obj : getWorld().getObjects(SomeName1. class ) { areTouching = areTouching || ((SomeName1)obj).checkTouching(SomeName2. class ); } return areTouching; } |