using UnityEngine; public class GoToWeb : MonoBehaviour { public void OpenWeb(string WebAddress) { Application.OpenURL(WebAddress); } }