Package games.stendhal.client.sprite

Examples of games.stendhal.client.sprite.TilesetAnimationMap


    }

    /*
     * Override the animated tiles (if any)
     */
    final TilesetAnimationMap tsam = animationMap.get(ref);

    if (tsam != null) {
      for (int i = 0; i < size; i++) {
        final Sprite sprite = tsam.getSprite(tileset, i);

        if (sprite != null) {
          tiles.set(baseindex + i, sprite);
        }
      }
View Full Code Here

TOP

Related Classes of games.stendhal.client.sprite.TilesetAnimationMap

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.