Skip to content
Snippets Groups Projects
Select Git revision
  • 0c59aaf1f5c850b26a3675812fb8e9a66d12f7dc
  • master default
  • JS-based-scroll-rendering
  • Paul_Marius_Level
  • Paul_Marius_2
  • Paul_Marius
  • Andi_Mark
  • be-UnityWebView
  • gitignoreFrameitServer
  • ZimmerBSc
  • Bugfix_StageLoading
  • stages
  • MAZIFAU_Experimental
  • tsc/coneworld
  • tsc/fact-interaction
  • marcel
  • MaZiFAU_TopSort
  • mergeHelper
  • zwischenSpeichern
  • tempAndrToMaster
  • SebBranch
  • 3.0
  • v2.1
  • v2.0
  • v1.0
25 results

WaitingForLocalMMT.cs

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");
            }
    
        }
    }