Package fr.tchocolate.qbe.world

Examples of fr.tchocolate.qbe.world.Cube


    calculateColisions();
    move();
  }
 
  private void calculateColisions(){
    Cube under = world.getCube(position.x, position.y-1, position.z);
    if(under.getType() == Material.AIR && !jumping){
      falling = true;
    }else{
      falling = false;
    }
  }
View Full Code Here

TOP

Related Classes of fr.tchocolate.qbe.world.Cube

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.