ShowChoose.cs 346 B

1234567891011121314151617181920
  1. using SC.XR.Unity;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. using static ScenesManager;
  6. public class ShowChoose : RemoteSingleton<ShowChoose>
  7. {
  8. public void Start()
  9. {
  10. // Invoke("GO",2f);
  11. }
  12. void GO()
  13. {
  14. // ScenesManager.Instance.showWindow(SceneType.ShowLogin);
  15. }
  16. }