Added catamaran mesh to possible boat meshes. Made catamaran the default boat.

#implement #story[1274]
This commit is contained in:
Calum
2017-09-20 15:58:22 +12:00
parent 9ed52a1225
commit 9d61a43bd7
14 changed files with 9 additions and 116 deletions
@@ -37,7 +37,7 @@ public class PlayerCell {
// Add Rotating Boat to Player Cell with players color on it.
Group group = new Group();
boatPane.getChildren().add(group);
BoatModel bo = ModelFactory.boatIconView(BoatMeshType.DINGHY, this.boatColor);
BoatModel bo = ModelFactory.boatIconView(BoatMeshType.CATAMARAN, this.boatColor);
group.getChildren().add(bo.getAssets());
}