This commit is contained in:
Chiara 2020-04-23 09:08:52 +02:00
parent f21d2a9319
commit c5e284c5eb
3 changed files with 4 additions and 3 deletions

View File

@ -10,7 +10,8 @@ import javafx.stage.Stage;
public class Main extends Application{ public class Main extends Application{
@Override @Override
public void start(Stage primaryStage) throws Exception{ public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("ressources/jouerSonTour6.fxml")); System.out.println("Lancement de l'application");
Parent root = FXMLLoader.load(getClass().getResource("ressources/Menu.fxml"));
primaryStage.setTitle("Shadow Hunters"); primaryStage.setTitle("Shadow Hunters");
primaryStage.setScene(new Scene(root)); primaryStage.setScene(new Scene(root));
primaryStage.show(); primaryStage.show();

View File

@ -34,7 +34,7 @@ public class MenuController implements Initializable{
@FXML @FXML
public void commencerPartie(MouseEvent mouseEvent) throws IOException{ public void commencerPartie(MouseEvent mouseEvent) throws IOException{
System.out.println("Passage à l'écran de choix des joueurs"); System.out.println("Passage à  l'écran de choix des joueurs");
BorderPane pane = FXMLLoader.load(getClass().getResource("../ressources/Choix_joueur.fxml")); BorderPane pane = FXMLLoader.load(getClass().getResource("../ressources/Choix_joueur.fxml"));
rootPane.getChildren().setAll(pane); rootPane.getChildren().setAll(pane);
} }

View File

@ -118,7 +118,7 @@ public class PlateauController implements Initializable {
} }
public void showInformation(List<Joueur> j) { public void showInformation(List<Joueur> j) {
System.out.println("\tEcriture des noms des joueurs"); System.out.println("\técriture des noms des joueurs");
for (int i=0; i<j.size(); i++) { for (int i=0; i<j.size(); i++) {
if (j.get(i) != null) if (j.get(i) != null)
nomJoueur.get(i).setText(j.get(i).getNom()); nomJoueur.get(i).setText(j.get(i).getNom());