1234567891011121314151617181920 |
- using SC.XR.Unity;
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- using static ScenesManager;
- public class ShowChoose : RemoteSingleton<ShowChoose>
- {
- public void Start()
- {
- // Invoke("GO",2f);
- }
- void GO()
- {
- // ScenesManager.Instance.showWindow(SceneType.ShowLogin);
- }
- }
|