*/
public static synchronized World getWorld() {
if (worldInstance == null) {
worldInstance = new World();
try {
worldInstance.wl = new WorldLoader();
List<Point3D> sections = worldInstance.wl
.loadWorld(worldInstance);
Logger.println("Loading world objects.");
worldInstance.wl.loadObjects(sections);
} catch (Exception e) {