Unity 之 transform

Posted zmztyas

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unity 之 transform相关的知识,希望对你有一定的参考价值。

transform.Translate

1、function Translate (translation : Vector3, relativeTo : Space = Space.Self) : void)

Move the object forward along its z axis 1 unit/second.
//沿着z轴1单位/秒,向前移动物体
transform.Translate(Vector3.forward * Time.deltaTime);
// Move the object upward in world space 1 unit/second.
//在世界坐标沿着y轴1单位/秒,向上移动物体
transform.Translate(Vector3.up * Time.deltaTime, Space.World);

以上是关于Unity 之 transform的主要内容,如果未能解决你的问题,请参考以下文章

unity 3D c#初探脚本之基本方法

Unity3D之UGUI:Rect Transform与Anchor

Unity经验之谈-DoTween动画结束匿名委托之巨坑

unity基础(GameObject transform)

Unity 之 查找游戏物体的几种方式解析

Unity初探之黑暗之光