localization - closes #17 & #16 #19

Merged
Fangh merged 13 commits from localization into main 2024-02-29 21:50:50 +00:00
2 changed files with 2 additions and 10 deletions
Showing only changes of commit c69c92d733 - Show all commits

View File

@ -96,12 +96,6 @@ public List<Question> GetQuestionsByPlayer(Player player)
return playerQuestions;
}
public void SetPlayersAreReady(int _state)
{
currentState = _state;
}
/// <summary>
/// Return all the propositions linked to a specific player.
/// </summary>

View File

@ -282,7 +282,6 @@ private void JoinRoom(Action callback_OnRoomJoined)
public void StartGame()
{
// send Start Game
myRoom.SetPlayersAreReady(1);
string JSON = JsonUtility.ToJson(myRoom);
Debug.Log(JSON);
try
@ -290,7 +289,6 @@ public void StartGame()
SendCurrentState(GameState.Explanation, () =>
{
Debug.Log($"start the game", this);
myRoom.currentState = (int)GameState.Explanation;
WaitingRoom.SetActive(false);
BeforeStart.SetActive(true);