Fixed issues with showing race view controller. Added missing icons. Added a smooth version of land.

#fix
This commit is contained in:
Calum
2017-09-26 01:49:43 +13:00
parent 06e5f4ae00
commit 81e791bd1a
7 changed files with 327 additions and 383 deletions
@@ -105,10 +105,10 @@ public class GameView3D extends GameView{
skybox.getTransforms().addAll(new Rotate(90, Rotate.X_AXIS));
Model land = ModelFactory.importModel(ModelType.LAND_SMOOTH);
land.getAssets().getChildren().get(0).getTransforms().add(new Rotate(90, Rotate.X_AXIS));
land.getAssets().getTransforms().add(new Rotate(90, Rotate.X_AXIS));
gameObjects.getChildren().addAll(
raceBorder, trail, markers, tokens, skybox, land.getAssets().getChildren().get(0)
raceBorder, trail, markers, tokens, skybox, land.getAssets()
);