上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 转载请标明出处:http://www.cnblogs.com/zblade/ 最近研究了一下如何在unity中实现c#的热更新,对于整个DLL热更新的过程和方案有一个初步的了解,这儿就写下来,便于后续的深入调查和方案选择。 一、C# DLL的动态加载和卸载 既然要热更新,那么就是动态的加载c#的DL 阅读全文
posted @ 2021-12-28 15:20 钢与铁 阅读(147) 评论(0) 推荐(0) 编辑
摘要: adb环境配置不需要先配置好jdk,然后配置adb环境,才能命令行运行adb https://blog.csdn.net/shengmer/article/details/79027828 https://blog.csdn.net/weixin_39607090/article/details/1 阅读全文
posted @ 2021-11-06 15:32 钢与铁 阅读(66) 评论(0) 推荐(0) 编辑
摘要: --local util={}--function util.Split(str, sep)-- local sep, fields = sep or ":", {}-- local pattern = string.format("([^%s]+)", sep)-- str:gsub(patter 阅读全文
posted @ 2021-11-03 19:18 钢与铁 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 1、并发方面(长短连接为什么同时存在?分流?减小并发压力?) 2、维持长连接需要耗费更多资源,短连接的发起过程耗时间会比较慢 https://www.zhihu.com/question/22677800 阅读全文
posted @ 2021-11-03 16:25 钢与铁 阅读(260) 评论(0) 推荐(0) 编辑
摘要: using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI; [RequireComponent(typeof(ContentSizeFitter))] public class textBgControl : UI 阅读全文
posted @ 2021-10-23 16:09 钢与铁 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-10-19 19:16 钢与铁 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-10-18 21:00 钢与铁 阅读(74) 评论(0) 推荐(0) 编辑
摘要: using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI; [RequireComponent(typeof(ContentSizeFitter))] public class textBgControl :UIB 阅读全文
posted @ 2021-10-18 20:10 钢与铁 阅读(33) 评论(0) 推荐(0) 编辑
摘要: public class TouchPenetrate : MonoBehaviour, IPointerClickHandler,IBeginDragHandler,IDragHandler,IPointerDownHandler,IScrollHandler { public GameObjec 阅读全文
posted @ 2021-09-20 11:14 钢与铁 阅读(163) 评论(0) 推荐(0) 编辑
摘要: Lua os.date() os.date## 原型:os.date ([format [, time]]) 解释:返回一个按format格式化日期、时间的字串或表。 usage## 参数格式: 由原型可以看出可以省略第二个参数也可以省略两个参数,只省略第二个参数函数会使用当前时间作为第二个参数,如 阅读全文
posted @ 2021-06-01 14:55 钢与铁 阅读(539) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页