Last active
May 28, 2019 11:47
-
-
Save vanessaaleung/20dabb7904e0baecee1af387694ac514 to your computer and use it in GitHub Desktop.
OnGUI
This file contains hidden or 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
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