
unity3d
AWE_some_ZT
学点技术属实不容易。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
重生,实现物体的拾取(字典类)
1. 重生(死亡后复活) 在人物的状态脚本中修改: IEnumerator Die() { //Debug.Log("你太菜了"); //Debug.LogWarning("无用警告"); if (deathSound) { GetComponent<AudioSource>().clip...原创 2019-07-07 22:17:27 · 250 阅读 · 0 评论 -
怪物的AI脚本(1)
1. VS底下的绿色波浪线是什么意思? 绿色波浪线: 如果你的代码中出现了绿色的波浪线,说明你的代码语法并没有错误, 只不过提示你有可能会出现错误,但是不一定会出现错误。警告线 红色波浪线: 如果你的代码中出现了红色的波浪线,意味着你的代码中出现了 语法错误。 2. 复习一下枚举和字典类 https://www.cnblogs.com/lina-chu/p/8391325.html...转载 2019-07-09 22:26:04 · 730 阅读 · 0 评论 -
怪物的AI脚本(2)
1. C#字典集合HashTable,Dicrionary,ConcurrentDictionary三者区别 https://blog.youkuaiyun.com/yinghuolsx/article/details/72952857 作者:yinghuolsx C#中 HashTable, Dictionary, ConcurrentDictionar 三者都表示键/值对的集合。 1.HashTable ...转载 2019-07-10 17:10:31 · 436 阅读 · 0 评论