I was using Winbridge to limit the features on the trial version
https://www.assetstore.unity3d.com/en/#!/content/18924
function StartGame ()
{
if (Store.IsFullAppActive (false))
{
Application.LoadLevel ("Game");
}
else
{
Application.LoadLevel ("Boxer Creation");
}
}
function QuitGame ()
{
Application.QuitGame ();
}
but it wont display the method
![alt text][1]
[1]: /storage/temp/53536-2015-09-05-17h18-14.png
How can I get the button link with the method?
↧