Package org.sfaci.jumper2dx.characters.Platform

Examples of org.sfaci.jumper2dx.characters.Platform.Direction


      if (object instanceof RectangleMapObject) {
        RectangleMapObject rectangleObject = (RectangleMapObject) object;
        if (rectangleObject.getProperties().containsKey(TiledMapManager.MOBILE)) {
          Rectangle rect = rectangleObject.getRectangle();
         
          Direction direction = null;
          if (Boolean.valueOf((String) rectangleObject.getProperties().get("right_direction")))
            direction = Direction.RIGHT;
          else
            direction = Direction.LEFT;
         
View Full Code Here

TOP

Related Classes of org.sfaci.jumper2dx.characters.Platform.Direction

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.