is it possible in Unity to say launch a web browser and take someone to a web page URL by clicking on text inside of say a GUI pop Up window? And if so how would that be done?
The way I’ve done this is by using:
if(GUILayout.Button("Visit Web Site"))
{
Application.OpenURL("http://www.yoursite.com");
}
so I bet by changing the button to :
GUILayout.Box
you can get needed results