Methode effet
This commit is contained in:
parent
5e2bc89af0
commit
fc717845c4
@ -378,6 +378,17 @@ public class PlateauController implements Initializable {
|
|||||||
JoueurIHM jihm = getJoueurIHM(j);
|
JoueurIHM jihm = getJoueurIHM(j);
|
||||||
jihm.setZoneJoueur(root);
|
jihm.setZoneJoueur(root);
|
||||||
}
|
}
|
||||||
|
public void afficherEffet(Joueur j) throws IOException {
|
||||||
|
|
||||||
|
final URL fxmlURL = getClass().getResource("/ihm/ressources/Jouer_tour(2b)piocher_carte.fxml");
|
||||||
|
final ResourceBundle bundle = ResourceBundle.getBundle("domaine.properties.langue", Locale.FRANCE);
|
||||||
|
final FXMLLoader fxmlLoader = new FXMLLoader(fxmlURL, bundle);
|
||||||
|
Pane root = (Pane)fxmlLoader.load();
|
||||||
|
//CartePiochable lzj = fxmlLoader.getController();
|
||||||
|
//lzj.setImageView(this.getImageCarte(j.getCarteLieu()));
|
||||||
|
JoueurIHM jihm = getJoueurIHM(j);
|
||||||
|
jihm.setZoneJoueur(root);
|
||||||
|
}
|
||||||
|
|
||||||
public CarteEquipement getChoixEquipementVole(Joueur joueur) {
|
public CarteEquipement getChoixEquipementVole(Joueur joueur) {
|
||||||
JoueurIHM jihm = getJoueurIHM(joueur);
|
JoueurIHM jihm = getJoueurIHM(joueur);
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
<?import javafx.scene.control.Label?>
|
<?import javafx.scene.control.Label?>
|
||||||
<?import javafx.scene.control.RadioButton?>
|
<?import javafx.scene.control.RadioButton?>
|
||||||
<?import javafx.scene.control.TextField?>
|
<?import javafx.scene.control.TextField?>
|
||||||
|
<?import javafx.scene.control.ToggleGroup?>
|
||||||
<?import javafx.scene.layout.AnchorPane?>
|
<?import javafx.scene.layout.AnchorPane?>
|
||||||
<?import javafx.scene.layout.BorderPane?>
|
<?import javafx.scene.layout.BorderPane?>
|
||||||
<?import javafx.scene.layout.HBox?>
|
<?import javafx.scene.layout.HBox?>
|
||||||
@ -312,9 +313,12 @@
|
|||||||
<children>
|
<children>
|
||||||
<HBox alignment="CENTER" prefHeight="43.0" prefWidth="688.0">
|
<HBox alignment="CENTER" prefHeight="43.0" prefWidth="688.0">
|
||||||
<children>
|
<children>
|
||||||
<RadioButton mnemonicParsing="false" text="RadioButton" />
|
<RadioButton mnemonicParsing="false" text="RadioButton">
|
||||||
<RadioButton mnemonicParsing="false" text="RadioButton" />
|
<toggleGroup>
|
||||||
<RadioButton mnemonicParsing="false" text="RadioButton" />
|
<ToggleGroup fx:id="tg1" />
|
||||||
|
</toggleGroup></RadioButton>
|
||||||
|
<RadioButton mnemonicParsing="false" text="RadioButton" toggleGroup="$tg1" />
|
||||||
|
<RadioButton mnemonicParsing="false" text="RadioButton" toggleGroup="$tg1" />
|
||||||
</children>
|
</children>
|
||||||
<padding>
|
<padding>
|
||||||
<Insets bottom="-5.0" />
|
<Insets bottom="-5.0" />
|
||||||
|
Loading…
x
Reference in New Issue
Block a user