Package com.jcloisterzone.ui.animation

Examples of com.jcloisterzone.ui.animation.RecentPlacement


            tileLayer.tilePlaced(tile);

            boolean initialPlacement = ev.getTriggeringPlayer() == null;//if triggering player is null we are placing initial tiles
            if ((!initialPlacement && !ev.getTriggeringPlayer().isLocalHuman()) ||
                (initialPlacement && tile.equals(client.getGame().getCurrentTile()))) {
                getAnimationService().registerAnimation(new RecentPlacement(tile.getPosition()));
            }
        } else if (ev.getType() == TileEvent.REMOVE) {
            tileLayer.tileRemoved(tile);
        }
        repaint();
View Full Code Here

TOP

Related Classes of com.jcloisterzone.ui.animation.RecentPlacement

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.