Package tiled.mapeditor.undo

Examples of tiled.mapeditor.undo.ChangeZoneEdit


        zoneHeight.setValue(zone.getHeight());
    }

    protected void buildPropertiesAndDispose() {
        // Make sure the changes to the object can be undone
        undoSupport.postEdit(new ChangeZoneEdit(zone));

        zone.setName(zoneName.getText());
        zone.setWidth(zoneWidth.intValue());
        zone.setHeight(zoneHeight.intValue());
       
View Full Code Here

TOP

Related Classes of tiled.mapeditor.undo.ChangeZoneEdit

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.