
unity学习日记
文章平均质量分 50
疯子月
这个作者很懒,什么都没留下…
展开
-
旧项目升级新版Unity2021导致Visual Studio无法使用
解决:旧项目升级新版Unity2021导致Visual Studio无法使用 - Aili_Xiao - 博客园转载 2022-04-18 23:54:53 · 428 阅读 · 0 评论 -
patch包热更
最近项目中增加了热更新了功能,程序也完成了相应的开发,接下来就需要对这个模块进行相应的测试工作了,在测试开始之前,了解下其原理总是很有好处的。1.什么是热更新简单的理解就是:用户重启客户端就能实现客户端更新的需求或者功能;或者也可以这样说:不需要通过在应用商店更新应用,就可以实现新的需求和功能。2.为什么要热更新能够缩短用户取得新版客户端的流程,改善用户体验。就拿iOS来说,如果你需要更新应用,需要经过一系列的苹果提审流程,少则几天,多则一个月,审核周期比较难控制。试想下,如果你的上转载 2021-09-23 17:35:24 · 742 阅读 · 0 评论 -
关于unity 插件iTween 的学习 (1)
打开itween的官网的这个页面http://itween.pixelplacement.com/documentation.php我们就会对itween有所了解,文档中详细的介绍了每一个函数的用法,那么我们将注意到,几乎每一个函数都会重载一个Xxxx(GameObject target, Hashtable args);这个便是itween的hash的用法。使用hash的好处有很...原创 2018-09-03 15:53:54 · 713 阅读 · 0 评论 -
学习随记——Time.deltaTime的含义及其应用
官方文档描述如下:DescriptionThe completion time in seconds since the last frame (Read Only).This property provides the time between the current and previous frame.UseTime.deltaTimeto move aGameObjec...翻译 2019-09-04 10:54:22 · 535 阅读 · 0 评论 -
unity里面的旋转
(1)Transform.eulerAngles 欧拉角官方解释是:The rotation as Euler angles in degrees.The x, y, and z angles represent a rotation z degrees around the z axis, x degrees around the x axis, and y degrees arou...原创 2019-09-19 17:05:30 · 415 阅读 · 0 评论