Package edu.ups.gamedev.player

Examples of edu.ups.gamedev.player.Player


  protected void buildPlayer() {
    // TODO abstract player and tank creation

    // create player and tank
    Tank playerTank = createTank(Tank.LIGHT_TANK);
    player = new Player("Player", playerTank);

    // attach everything
    root.attachChild(playerTank);

    playerTank.setLocalTranslation(10, 200, 10);
View Full Code Here

TOP

Related Classes of edu.ups.gamedev.player.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.