NavigationingControl.cs 479 B

12345678910111213141516171819202122
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class NavigationingControl : MonoBehaviour
  5. {
  6. // Start is called before the first frame update
  7. void Start()
  8. {
  9. }
  10. public void Home()
  11. {
  12. ScenesManager.Instance.showWindow(ScenesManager.SceneType.ShowChoose);
  13. }
  14. public void Device()
  15. {
  16. ScenesManager.Instance.showWindow(ScenesManager.SceneType.ShowDevice);
  17. }
  18. }