using UnityEngine.UI;
public class Animation : MonoBehaviour
{
public Button startBtn;
// Start is called before the first frame update
void Start()
{
startBtn.onClick.AddListener(startAction);
}
void startAction()
{
}
// Update is called once per frame
void Update()
{
}
}
网友评论