摘要:
git和svn的详细对比 近期就【版本管理工具是否进行切换SVN->Git】的问题进行了讨论,于是对svn和Git进行了相关研究,进而梳理出Git的特点(优、缺点),最后将Git与SVN进行了对比,对比结果详见下方内容。(有歧义的地方请评论指出!!!,THANKS) 版本工具差异 svn git 系 阅读全文
摘要:
http://blog.csdn.net/aceyan0718/article/details/52317231 阅读全文
摘要:
------------------虚函数overload-------------------------- --回调:寻路中格子坐标改变 CHero.OnSearchToCellsChange = function(self) self:OnSyncWithServer() end ------------------虚函数overload结束--------------------... 阅读全文
摘要:
addcomponent 等价于 instance了一个组件,完成后立即从该点调用awake()。 等到游戏中所有组件都被awake()之后,start()才会被调用。示例如下: class MyTest { void Awake(){ Console.WriteLine("Awake") } vo 阅读全文
摘要:
http://developer.51cto.com/art/201505/477702.htm 阅读全文
摘要:
1,http://www.terrain.dk/ 2,http://blog.csdn.net/qq_29523119/article/details/56017155 3,https://wenku.baidu.com/view/685471030912a21614792968.html 4,ht 阅读全文
摘要:
http://kesen.realtimerendering.com/ 阅读全文
摘要:
http://vdisk.weibo.com/u/5253722586?log_target=my_sharing 阅读全文
摘要:
CA = {} CA.TestCb = function(self, cb) if not self._cb then self._cb = function() cb() end end self._cb() end CA:TestCb(function() print("cb1") end) CA:TestCb(function() ... 阅读全文
摘要:
static void ReflectionTest() {//测试两种反射的效率问题 //Type.GetType()只能在同一个程序集中使用,typeof则可以跨程序集(assembly) //通过下面的实测,发现typeof是比GetType快40多倍 var timer = Stopw... 阅读全文