Package org.sfaci.jumper2dx.characters

Examples of org.sfaci.jumper2dx.characters.Player


        levelManager.loadCurrentMap();
        mapRenderer = new OrthogonalTiledMapRenderer(levelManager.map);
        batch = mapRenderer.getSpriteBatch();

        // Crea el jugador y lo posiciona al inicio de la pantalla
        player = new Player(this);
        // posición inicial del jugador
        player.position.set(0 * levelManager.map.getProperties().get("tilewidth", Integer.class),
                2 * levelManager.map.getProperties().get("tileheight", Integer.class) + 32);

        // Música durante la partida
View Full Code Here

TOP

Related Classes of org.sfaci.jumper2dx.characters.Player

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.