Added preliminary terrain collision detection, added some combat functions, changed CreatureObjects superclass to Tangible Object

Updated engine
Delete all files in odb/creature (creature superclass was changed so db
wipe is needed)
This commit is contained in:
Light2
2013-07-30 21:29:35 +02:00
parent 1cff088aeb
commit 1078331b60
10 changed files with 484 additions and 71 deletions
-1
View File
@@ -68,7 +68,6 @@ public class TerrainService {
return Float.NaN;
Planet planet = getPlanetByID(planetId);
float height = planet.getTerrainVisitor().getHeight(x, z);
System.out.println("Height: " + height);
return height;
}