Skip to content
Snippets Groups Projects
Commit 2bdb4219 authored by Nongma SORGHO's avatar Nongma SORGHO
Browse files

(fix: all) 4 players test

parent 52326389
Branches
1 merge request!53(fix: all) 4 players test
This commit is part of merge request !53. Comments created here will be created in the context of that merge request.
...@@ -75,6 +75,8 @@ public class Draggable : MonoBehaviour ...@@ -75,6 +75,8 @@ public class Draggable : MonoBehaviour
// clic sur un pion d'un autre joueur // clic sur un pion d'un autre joueur
// Debug.Log("id joueur pion: " + pion.get_ID_joueur() + ", id tour dans client: " + client.get_ID_tour()); // Debug.Log("id joueur pion: " + pion.get_ID_joueur() + ", id tour dans client: " + client.get_ID_tour());
int idCase; int idCase;
if (client.id_Joueur_In_Game - 1 != client.get_ID_tour()) { return; }
if (pion.get_ID_joueur() != client.get_ID_tour() + 1) if (pion.get_ID_joueur() != client.get_ID_tour() + 1)
{ {
......
...@@ -205,7 +205,7 @@ public class Joueur : MonoBehaviour ...@@ -205,7 +205,7 @@ public class Joueur : MonoBehaviour
{ {
// if it is not this player's turn disable the dice button // if it is not this player's turn disable the dice button
float[] timerInfo = client.getTimerInfo(ID_joueur-1); float[] timerInfo = client.getTimerInfo(ID_joueur-1);
if (client.id_Joueur_In_Game - 1 != client.get_ID_tour() || hasChosen || timerInfo[0] == 2.0f) if ((client.id_Joueur_In_Game - 1 != client.get_ID_tour() && client.get_ID_tour() + 1 != ID_joueur) || hasChosen || timerInfo[0] == 2.0f)
{ {
choiceButton.interactable = false; choiceButton.interactable = false;
} }
...@@ -213,7 +213,7 @@ public class Joueur : MonoBehaviour ...@@ -213,7 +213,7 @@ public class Joueur : MonoBehaviour
{ {
choiceButton.interactable = true; choiceButton.interactable = true;
} }
if (client.id_Joueur_In_Game - 1 == client.get_ID_tour() && gameStarted) if (client.id_Joueur_In_Game - 1 == client.get_ID_tour() && gameStarted && client.get_ID_tour() + 1 == ID_joueur)
{ {
choiceButton.gameObject.SetActive(true); choiceButton.gameObject.SetActive(true);
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment