杂谈Unity3D的single channel texture

请尊重原作者的工作,转载时请务必注明转载自:www.xionggf.com 经实测,在Unity3D 2020.2.6f1版本中,在导入纹理的钩子代码中,如果设置TextureImporter.textu

Animancer的Transition参数手册(翻译)

原文地址 Transitions 与其硬编码淡入淡出的持续时间(hard-coding the fade durations),开始和结束时间,动画剪辑的播放速度和动画事件,不如使用transition机制。此机制可以在编辑模式下的可视化地

Animancer的States(翻译)

原文地址 State 当播放一段动画剪辑(animation clip)时,Animancer会创建一个ClipState来管理它并跟踪其进度。ClipState是最常见的一种AnimancerState,除此之外

什么是自然常数e

请尊重原作者的工作,转载时请务必注明转载自:www.xionggf.com 自然对数的“底”来源于自然对数,所谓的“自然对数”可以用下面的一个函数来说明: 一个物体沿直线运动,令时间为$x$。且速度和时间

从正弦波到傅里叶变换

请尊重原作者的工作,转载时请务必注明转载自:www.xionggf.com 一个典型的正弦函数如下: $$ y=\sin \left( x \right) $$ 其中自变量$x$为弧度(或者角度,以下统一用弧度),因变量$y$为弧度$x$的正弦值。 又因

Unity3D的Animator中的animation transition参数细节

请尊重原作者的工作,转载时请务必注明转载自:www.xionggf.com 选项 描述 Has Exit Time 如果设置为true,则仅在指定的动画剪辑已经播放了给定百分比之后,才启用动画剪辑过渡(transition)。 如

什么是微分

请尊重原作者的工作,转载时请务必注明转载自:www.xionggf.com 参考视频 第21讲:微积分(上册)微分的定义 预备:有限增量公式 根据导数的定义,函数 $f(x)$ 在 $x_{0}$ 处求导,写成极限的形式为: $$ f'(x_{0})=\lim_{\Delta x \to 0} \frac{f(x_0+\Delta x)-f(x_0)}{\Delta

Unity3D的Color Space细节解析

请尊重原作者的工作,转载时请务必注明转载自:www.xionggf.com 参考网页 https://zhuanlan.zhihu.com/p/36507196 https://zhuanlan.zhihu.com/p/93216787 https://blog.csdn.net/candycat1992/article/details/46228771 https://developer.nvidia.com/gpugems/GPUGems3 http://www.klayge.org/2011/02/26/gamma%E7%9A%84%E4%BC%A0%E8%AF%B4/ https://zhuanlan.zhihu.com/p/36507196 https://www.kinematicsoup.com/news/2016/6/15/gamma-and-linear-space-what-they-are-how-they-differ https://zhuanlan.zhihu.com/p/66558476 https://www.cambridgeincolour.com/tutorials/gamma-correction.htm https://zhuanlan.zhihu.com/p/37679604 https://zhuanlan.zhihu.com/p/271011254

Understanding C# async / await 第2章

Understanding C# async / await Understanding C# async / await 第1章原文地址 Understanding C# async / await 第2章原文地址 Understanding C# async / await 第3章原文地址 2 The Awaitable-Awaiter Pattern 2.1 What is awaitable 第1部分显示了所有Task类都是awaitable的。实际上,还有其他awaitable类型。如下所示

lua优化经验总结

Lua
请尊重原作者的工作,转载时请务必注明转载自:www.xionggf.com 这是我在做一些手游项目时的lua优化经验总结。 注意清空table操作的效率问题 在Lua中,通常要清空一个table,很常见的方