* Lays out origin objects
*/
for (WorldObject wo : getChildren()) {
if (wo instanceof UIProbe) {
UIProbe probe = (UIProbe) wo;
probe.setOffset(getWidth() * (1f / 4f), probeY + getHeight() * (1f / 4f));
probeY += probe.getHeight() + 5;
} else if (wo instanceof Widget) {
Widget widget = (Widget) wo;
if (widget.getParent() == null) {
/*