facebook twitter hatena line email

Unity/WebGL/外部リンク

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

リンクを開くときに同じタグで開くので、新規で開くように

public void OpenURL(url)
{
#if UNITY_EDITOR
    Application.OpenURL(url);
#elif UNITY_WEBGL
    Application.ExternalEval(string.Format("window.open('{0}','_blank')", url));
#else
    Application.OpenURL(url);
#endif
}