Merge branch 'main' of https://git.crystalyx.net/GameJams/Snaparazzi
This commit is contained in:
commit
03158f21c9
@ -3292,7 +3292,7 @@ MonoBehaviour:
|
||||
m_PressedTrigger: Pressed
|
||||
m_SelectedTrigger: Selected
|
||||
m_DisabledTrigger: Disabled
|
||||
m_Interactable: 1
|
||||
m_Interactable: 0
|
||||
m_TargetGraphic: {fileID: 1158329300}
|
||||
m_OnClick:
|
||||
m_PersistentCalls:
|
||||
|
@ -1,5 +1,6 @@
|
||||
using Firebase;
|
||||
using Firebase.Auth;
|
||||
using Firebase.Extensions;
|
||||
using System;
|
||||
using UnityEngine;
|
||||
using UnityEngine.Android;
|
||||
@ -19,7 +20,7 @@ void Start()
|
||||
{
|
||||
AskForCameraAuthorizationForAndroid();
|
||||
|
||||
FirebaseApp.CheckAndFixDependenciesAsync().ContinueWith(task =>
|
||||
FirebaseApp.CheckAndFixDependenciesAsync().ContinueWithOnMainThread(task =>
|
||||
{
|
||||
var dependencyStatus = task.Result;
|
||||
if (dependencyStatus == DependencyStatus.Available)
|
||||
@ -43,7 +44,7 @@ void Authenticate()
|
||||
{
|
||||
FirebaseAuth auth = FirebaseAuth.DefaultInstance;
|
||||
|
||||
auth.SignInAnonymouslyAsync().ContinueWith(task =>
|
||||
auth.SignInAnonymouslyAsync().ContinueWithOnMainThread(task =>
|
||||
{
|
||||
if (task.IsCanceled)
|
||||
{
|
||||
|
@ -1,13 +1,13 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Firebase.Database;
|
||||
using Firebase.Extensions;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using TMPro;
|
||||
using Unity.VisualScripting;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
|
||||
/// <summary>
|
||||
/// This is the game state manager on the phone side
|
||||
@ -26,7 +26,7 @@ public class GameManager : MonoBehaviour
|
||||
public TextMeshProUGUI roomError;
|
||||
public TMP_InputField playerNameField;
|
||||
public TextMeshProUGUI nameError;
|
||||
public UnityEngine.UI.Button submitNewPlayer;
|
||||
public Button submitNewPlayer;
|
||||
|
||||
[Header("WaitingRoom Component")]
|
||||
public TextMeshProUGUI listPlayersUI;
|
||||
@ -54,6 +54,7 @@ public class GameManager : MonoBehaviour
|
||||
|
||||
private void Awake()
|
||||
{
|
||||
submitNewPlayer.interactable = false;
|
||||
FirebaseInitializer.Instance.onFirebaseReady += Initialize;
|
||||
}
|
||||
|
||||
@ -71,7 +72,6 @@ private void Start()
|
||||
if (PlayerPrefs.HasKey("lastplayername"))
|
||||
playerNameField.text = PlayerPrefs.GetString("lastplayername");
|
||||
|
||||
submitNewPlayer.interactable = false;
|
||||
}
|
||||
|
||||
private void OnApplicationQuit()
|
||||
@ -135,9 +135,8 @@ private void Initialize()
|
||||
{
|
||||
FirebaseInitializer.Instance.onFirebaseReady -= Initialize;
|
||||
realtimeDB = FirebaseDatabase.DefaultInstance.RootReference;
|
||||
Debug.Log("Realtime DB initialized");
|
||||
|
||||
submitNewPlayer.interactable = true;
|
||||
Debug.Log("Realtime DB initialized");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
Loading…
Reference in New Issue
Block a user