Package com.khorn.terraincontrol.customobjects

Examples of com.khorn.terraincontrol.customobjects.CustomObjectCollection


            {
                sender.sendMessage(ERROR_COLOR + "Wrong page number " + args.get(0));
            }
        }

        CustomObjectCollection globalObjects = TerrainControl.getCustomObjectManager().getGlobalObjects();

        if (globalObjects.isEmpty())
            sender.sendMessage(MESSAGE_COLOR + "This global directory does not have custom objects");

        List<String> pluginList = new ArrayList<String>();
        for (CustomObject object : globalObjects)
        {
View Full Code Here


        }

        Map<String, CustomObjectLoader> objectLoaders =
                TerrainControl.getCustomObjectManager().getObjectLoaders();

        customObjects = new CustomObjectCollection(objectLoaders, worldObjectsDir);
        customObjects.setFallback(TerrainControl.getCustomObjectManager().getGlobalObjects());
        TerrainControl.log(LogMarker.INFO, "{} world custom objects loaded.", customObjects.getAll().size());
    }
View Full Code Here

TOP

Related Classes of com.khorn.terraincontrol.customobjects.CustomObjectCollection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.