上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 42 下一页
摘要: ink 是 inkle 发明的标记式语言,专门用在编写互动叙事游戏中,是制作文字游戏和游戏叙事的利器。使用了 ink 语言来叙事的游戏有比较知名的《80 天(80 Days)》等。 使用ink开发的游戏 https://indienova.com/gamedb/list/73/p/1 ink有自带的 阅读全文
posted @ 2021-03-14 10:33 三页菌 阅读(1157) 评论(0) 推荐(0) 编辑
摘要: 此种排序将按照字典键值ASCII码进行排序 //字典键值排序 var sortDic = dic.OrderBy(x => x.Key).ToDictionary(x=>x.Key,x=>x.Value); 阅读全文
posted @ 2021-03-09 21:47 三页菌 阅读(947) 评论(0) 推荐(0) 编辑
摘要: 如果是编辑器不使用运行时的话,直接使用UnityEditor下的API即可 FileUtil.CopyFileOrDirectory 如果是运行时 /// <summary> /// 文件夹拷贝 /// </summary> /// <param name="sourcePath">源路径</par 阅读全文
posted @ 2021-02-26 10:29 三页菌 阅读(993) 评论(0) 推荐(0) 编辑
摘要: 直接上代码,注意 脚本需要放在Editor文件夹下 可按组合键,进行截图 ctrl + shift + y using System.IO; using System.Threading.Tasks; using UnityEditor; using UnityEditorInternal; usi 阅读全文
posted @ 2021-01-24 17:53 三页菌 阅读(1090) 评论(0) 推荐(0) 编辑
摘要: 随机数种子,一直让随机数出现的规律变得相同的技术 这种技术常用于roughlike游戏中,使用相同种子的玩家开始一场游戏时,里面随机生成的要素将会变得相同 这使得种子会在玩家之间传播 【图:以撒的结合】 【图:杀戮尖塔】 上面2者,都使用了一个 字母加数字 的随机字符串作为游戏的种子 而使用字符串作 阅读全文
posted @ 2021-01-15 15:50 三页菌 阅读(1109) 评论(0) 推荐(0) 编辑
摘要: https://game-icons.net/ 阅读全文
posted @ 2021-01-09 21:08 三页菌 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 一个类即可 using System.Collections; using System.Collections.Generic; using UnityEngine; public class ImageLine : MonoBehaviour { //线条宽度 public float line 阅读全文
posted @ 2021-01-09 20:12 三页菌 阅读(874) 评论(0) 推荐(0) 编辑
摘要: 异步任务队列,十分好用 using System.Collections; using System.Collections.Generic; using System.Threading.Tasks; using UnityEngine; /// <summary> /// 异步任务队列 /// 阅读全文
posted @ 2021-01-05 15:02 三页菌 阅读(844) 评论(0) 推荐(0) 编辑
摘要: 直接来,1个脚本 using System.Collections; using System.Collections.Generic; using System.Diagnostics; using UnityEditor; using Debug = UnityEngine.Debug; pub 阅读全文
posted @ 2021-01-01 22:17 三页菌 阅读(781) 评论(0) 推荐(1) 编辑
摘要: 挺不错的 https://www.wonderdraft.net/ 更多相关 https://www.zhihu.com/question/27061982 Azgaar's Fantasy Map Generator 免费 其实更强大一些,自动生成算法完备,支持3D化,支持导出SVG和GeoJSO 阅读全文
posted @ 2020-12-30 08:58 三页菌 阅读(1858) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 42 下一页