Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using UnityEngine;
- using System.Collections;
- public class Request : MonoBehaviour {
- public string url = "";
- void OnGUI() {
- if (GUI.Button(new Rect(640, 300, 120, 30), "Click me to open"))
- Application.OpenURL(url);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement