Newer
Older
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI; //andr
using UnityEngine.SceneManagement;
using System.IO; //
using UnityEngine.Video;//streaming
using UnityEngine.Networking;
//using static CheckServer;
///using static CommunicationEvents;
using static StreamingAssetLoader;
using static UIconfig;
//new InputSystem
using UnityEngine.EventSystems;
using UnityEngine.InputSystem.Layouts;
public class LaunchMenue_mobile : MonoBehaviour, IPointerDownHandler, IPointerUpHandler
{
public GameObject parentM_GObj;
public GameObject optionsNetwM_GObj;
public void OnPointerDown(PointerEventData eventData)
{
StartWithLastServerButton();
}
public void OnPointerUp(PointerEventData eventData)
{
}
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
void Start()
{
}
private void Update()
{
//UnityEngine.Debug.Log("StartMainMenue");
}
public void StartWithLastServerButton()
{
if (CommunicationEvents.ServerRunningA[6] == 2)
{
startNextSceneFunctionNewGame();
}
else
{
toNetwOptionsM();
}
}
public void toNetwOptionsM()
{
ClearUIC();
UIconfig.Andr_Start_menue_counter = 2;
optionsNetwM_GObj.SetActive(true);
}
/// <summary>
/// Deactivates all Pages.
/// </summary>
private void ClearUIC()
{
for (int i = 0; i < parentM_GObj.transform.childCount; i++)
{
parentM_GObj.transform.GetChild(i).gameObject.SetActive(false);
}
}
public static void startNextSceneFunctionNewGame()
{
NetworkJSON_Save();
CommunicationEvents.ServerAdress = "http://" + CommunicationEvents.selecIP;
Stefan Richter
committed
CommunicationEvents.ServerRunning = true;
UnityEngine.Debug.Log("StartMainMenue");
Stefan Richter
committed
UnityEngine.Debug.Log("CommunicationEvents.ServerAdress = " + CommunicationEvents.ServerAdress);