Unity发布PC限制本地访问exe次数
1.当打开次数大于3次时,unity会执行自动退出代码
int mi = 1;//限制本地访问exe次数if (PlayerPrefs.GetInt("miwen") > 3){Application.Quit();}mi = PlayerPrefs.GetInt("miwen");mi += 1;PlayerPrefs.SetInt("miwen", mi);
- 想要再次打开的话,需要重置一下参数的值
//重置参数为0
PlayerPrefs.SetInt("miwen", 0);//
//或清空
PlayerPrefs.DeleteAll();//清空