Web ブラウザーで url
の場所を開きます。
エディターやスタンドアロンプレイヤーではデフォルトのブラウザーを使用して指定した URL の新しいページを開きます。ブラウザーは前面に表示されます。
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Start() { Application.OpenURL("http://unity3d.com/"); } }
Note: The web player is not supported from 5.4.0 onwards.