mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 14:28:43 +00:00
Everything works. Needs a bit of polish, and possibly look at boat shapes next.
tags: #story[1142]
This commit is contained in:
@@ -25,6 +25,8 @@ public class CustomizationController {
|
||||
|
||||
public void initialize() {
|
||||
|
||||
boatColorPicker.setValue(new Color(0.0, 0.0, 0.0, 1.0));
|
||||
|
||||
}
|
||||
|
||||
public void setServerThread(ClientToServerThread ctsThread) {
|
||||
@@ -56,6 +58,9 @@ public class CustomizationController {
|
||||
this.windowStage = stage;
|
||||
}
|
||||
|
||||
public void setPlayerName(String name) {
|
||||
this.nameField.setText(name);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -149,9 +149,11 @@ public class LobbyController {
|
||||
try {
|
||||
FXMLLoader fxmlLoader = new FXMLLoader(LobbyController.class.getResource("/views/customizeView.fxml"));
|
||||
root = fxmlLoader.load();
|
||||
root.getStylesheets().add("/css/master.css");
|
||||
Stage customizeStage = new Stage();
|
||||
CustomizationController cc = fxmlLoader.getController();
|
||||
cc.setServerThread(this.socketThread);
|
||||
cc.setPlayerName(this.players.get(playerID - 1));
|
||||
customizeStage.setTitle("Customize Boat");
|
||||
customizeStage.setScene(new Scene(root, 700, 450));
|
||||
cc.setStage(customizeStage); // pass the stage through so it can be closed later.
|
||||
|
||||
Reference in New Issue
Block a user