Added pirate ship meshes to application. Updated boat model to allow for jib sails and a fixed sail. #story[1274]

This commit is contained in:
Peter Galloway
2017-09-20 17:56:07 +12:00
parent 7197bc2bee
commit ea0be5e952
5 changed files with 32 additions and 14 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.CAT_ATE_A_MERINGUE, this.boatColor);
BoatModel bo = ModelFactory.boatIconView(BoatMeshType.PIRATE_SHIP, this.boatColor);
group.getChildren().add(bo.getAssets());
}