btnControllor.cs 485 B

1234567891011121314151617181920212223242526272829
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine.SceneManagement;
  4. using UnityEngine;
  5. using UnityEngine.UI;
  6. public class btnControllor : MonoBehaviour
  7. {
  8. // Start is called before the first frame update
  9. //public Button myButton;
  10. void Start()
  11. {
  12. }
  13. // Update is called once per frame
  14. public void LoginBtnClick()
  15. {
  16. SceneManager.LoadScene("Loading");
  17. }
  18. void Update()
  19. {
  20. }
  21. }