using UnityEngine;
using System.Collections;
using System.Diagnostics;/////
public class FeiYuZhu : MonoBehaviour
{
    public void OnClick()
    {
#if UNITY_STANDALONE
       UnityEngine.Debug.Log("打开exe");
       Process.Start(@"飞羽竹");
#endif
#if UNITY_WEBPLAYER
        Debug.Log("打开网页");
        Application.OpenURL(OpenURL);
        
#endif
    }
}

 

相关文章:

  • 2022-12-23
  • 2022-02-05
  • 2022-12-23
  • 2022-01-07
  • 2022-12-23
  • 2021-12-29
  • 2021-11-17
猜你喜欢
  • 2022-12-23
  • 2021-07-07
  • 2022-12-23
  • 2022-12-23
  • 2021-12-26
  • 2021-06-19
相关资源
相似解决方案