use of com.watabou.noosa.Visual in project pixel-dungeon-remix by NYRDS.
the class GameLog method layout.
@Override
protected void layout() {
float pos = y;
for (int i = getLength() - 1; i >= 0; i--) {
Visual entry = (Visual) members.get(i);
if (entry instanceof Text) {
entry.x = x;
entry.y = pos - entry.height();
pos = entry.y;
}
}
}