26
08/21
unity3d Vector3.Lerp解析
Vector3.Lerp:http://www.ceeger.com/Script/Vector3/Vector3.Lerp.html 手册中描述的不是很详细,什么叫“按照数字t在from到to之间插值”???t代表什么鬼?还得自己测试一下才知道 我以前这样用过: from.position = Vector3.Lerp(from.position, to.position, Time.deltaTime); 或者想要快一些我就这样: from.position = Vector3.Lerp(from.position, to.position, Time.deltaTime * 2f); 不知道大家有没有像我这样用过!第三个参数取值范围0~1,其实就是距离百分比,比如填0.5f,那么就是取A点到B点的...