Skip to content

Instantly share code, notes, and snippets.

@vanessaaleung
Last active May 28, 2019 11:47
Show Gist options
  • Save vanessaaleung/20dabb7904e0baecee1af387694ac514 to your computer and use it in GitHub Desktop.
Save vanessaaleung/20dabb7904e0baecee1af387694ac514 to your computer and use it in GitHub Desktop.
OnGUI
void OnGUI() {
string name = "Vanessa";
//if click the button
if (GUI.Button (new Rect (10,10,10,10), "More Details")) {
//execute the iOS func
unityToIOS (name);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment