Skip to content
Snippets Groups Projects
Select Git revision
  • becc7da1f21306af11bc720fa35b960af4b8a55a
  • main default
  • master
  • tempAndrToMaster
4 results

ToolModeSelector.cs.meta

Blame
  • WaitingForLocalMMT.cs 507 B
    using UnityEngine;
    using UnityEngine.SceneManagement;
    using static UIconfig;
    
    public class WaitingForLocalMMT : MonoBehaviour
    {
       
        
    
        private void Start()
        {
            
            
        }
    
        private void Update()
        {
            
            if (CommunicationEvents.ServerRunning == true)
            {
                CommunicationEvents.ServerAdress = CommunicationEvents.ServerAddressLocal;
                UnityEngine.Debug.Log("StartMainMenue");
                SceneManager.LoadScene("MainMenue");
            }
    
        }
    }