Package tiled.mapeditor.util.cutter

Examples of tiled.mapeditor.util.cutter.BorderTileCutter


    public TileCutter getCutter(int w, int h, int s) {
        final String selectedItem = (String) cutterBox.getSelectedItem();
        if (selectedItem.equalsIgnoreCase("basic")) {
            return new BasicTileCutter(w, h, s, 0);
        } else if (selectedItem.equalsIgnoreCase("border")) {
            return new BorderTileCutter();
        }

        return null;
    }
View Full Code Here

TOP

Related Classes of tiled.mapeditor.util.cutter.BorderTileCutter

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.