root.visitItems(new Slot<Node>() { @Override public void onEmit (Node node) {
// Draw the item to the atlas
node.item.draw(atlasImage.surface(), node.x, node.y);
// Record its region
packed.put(node.item.id, atlasImage.subImage(
node.x, node.y, node.width, node.height));
}});
}
return packed;
}