mirror of
https://github.com/xiaopeng12138/MaiDXR.git
synced 2024-12-18 11:55:52 +01:00
16 lines
561 B
C#
16 lines
561 B
C#
|
using UnityEngine;
|
||
|
using Unity.Netcode;
|
||
|
|
||
|
public class DebugButton : MonoBehaviour
|
||
|
{
|
||
|
private void OnGUI() {
|
||
|
GUILayout.BeginArea(new Rect(10, 10, 100, 300));
|
||
|
//if (!NetworkManager.Singleton.IsClient && !NetworkManager.Singleton.IsServer) {
|
||
|
if (GUILayout.Button("Host")) GetComponent<StartManager>().StartHost();
|
||
|
if (GUILayout.Button("Client")) GetComponent<StartManager>().StartClient();
|
||
|
if (GUILayout.Button("Stop")) GetComponent<StartManager>().StopAll();
|
||
|
//}
|
||
|
GUILayout.EndArea();
|
||
|
}
|
||
|
}
|