Created
April 19, 2017 14:12
-
-
Save n-taku/38baba7df6bfaf8d0b03c52758d1d5d6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.UI; | |
public class OnClickBtnScript : MonoBehaviour { | |
public Button btn; | |
void Start () { | |
btn.onClick.AddListener (OnClickBtnCallback); | |
} | |
void OnClickBtnCallback() { | |
Debug.Log ("OnClickBtnCallback"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment