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...
public boolean checkTouching(Class clss)
{
return isTouching(clss);
}private boolean is1touching2()
{
boolean areTouching = false;
for (Object obj : getWorld().getObjects(SomeName1.class)
{
areTouching = areTouching || ((SomeName1)obj).checkTouching(SomeName2.class);
}
return areTouching;
}