
Unity开发
唯心之路
菜鸟
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Unity设置软件使用次数
private int set_time; private int get_time; public int PlayTimes; void OnApplicationQuit() { set_time = get_time + 1; PlayerPrefs.SetInt("_NAM", set_time); } void Update() { get_time = PlayerPrefs.Get...原创 2019-09-19 16:59:44 · 433 阅读 · 1 评论 -
Unity3D各平台路径(包括手机内置存储路径、SD卡等等)
关于Unity3D在各平台上的路径问题,网上有好多的资料,如下是比较好的参考资料: 1、http://www.manew.com/thread-23491-1-1.html 2、http://www.xuanyusong.com/archives/2656 这里我不详细解释和路径的用法,只把各个路径对应的位置和访问方式总结一下。 1、Resources路径 Resources文件夹是Unity里自...原创 2019-09-19 17:01:35 · 497 阅读 · 0 评论