31 lines
689 B
C#
31 lines
689 B
C#
using System.Collections;
|
||
using System.Collections.Generic;
|
||
using UnityEngine;
|
||
using UnityEngine.UI;
|
||
//============================================================
|
||
//支持中文,文件使用UTF-8编码
|
||
//@author YangHua
|
||
//@create 20230913
|
||
//@company QianHuo
|
||
//
|
||
//@description:
|
||
//============================================================
|
||
namespace QianHuo
|
||
{
|
||
public class GoToSceneController : MonoBehaviour
|
||
{
|
||
public Button goToSceneBtn;
|
||
public InputField userID;
|
||
// Use this for initialization
|
||
private void Start()
|
||
{
|
||
goToSceneBtn.onClick.AddListener(OnGo);
|
||
}
|
||
|
||
public void OnGo()
|
||
{
|
||
|
||
}
|
||
}
|
||
}
|