自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(2)
  • 资源 (5)
  • 收藏
  • 关注

原创 控制递归的次数

经常会用到递归,虽然能解决问题,但其缺点很明显,有可能无法跳出造成死循环,能控制递归次数就可以避免这种情况。用lua尝试了几种方法,第一种,在方法内定义一个变量计数:function recursionTest() local times = 0 if times < 10 then times = times + 1 recursionTest() end if times == 0 then print("o

2020-09-09 00:26:16 3480

原创 多线程中的后台线程

最近在开发过程中遇到一个后台线程的坑,分享出来,大家也可以一起讨论。多线程中通过给线程设置Thread.IsBackground属性可以将已有线程设置为后台线程,根据MSDN中的官方解释:Background threads are identical to foreground threads, except that background threads do not prevent a pr...

2018-07-09 00:44:31 949

数字绘图的光照与渲染技术 第2版 带书签

渲染技术入门经典书籍,美式写作风格,干货满满,适用于多种制作工具。

2018-04-10

游戏引擎架构

带读者详尽了解游戏开发用到的不同类型的引擎,对想从事游戏开发的朋友来说是一本很好的读物。

2018-03-25

Programming.in.Lua 4th Edition(已添加书签)

Programming.in.Lua.4th.Edition为Programming.in.Lua书的第四版,由Lua作者编写,入门必备。已在书中添加书签。

2018-03-17

数字绘图中的光照与渲染

图形学必备基础书籍,推荐游戏行业开发人员研读,适用于各主流引擎。

2018-03-17

Software.Engineering,.9th edition

著名的Software.Engineering第九版,欢迎大家下载交流! Books inevitably reflect the opinions and prejudices of their authors. Some readers will inevitably disagree with my opinions and with my choice of material. Such disagreement is a healthy reflection of the diversity of the discipline and is essential for its evolution. Nevertheless, I hope that all software engineers and software engineering students can find something of interest here.

2017-09-22

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除