1.1 摄像机的移动
Posted xiajing12345
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.1 摄像机的移动相关的知识,希望对你有一定的参考价值。
void Update () {
float x = Input.GetAxis ("Horizontal") * Time.deltaTime * speed;
float z = Input.GetAxis ("Vertical") * Time.deltaTime * speed;
transform.Translate (x, 0, z);
print (x);
}
以上是关于1.1 摄像机的移动的主要内容,如果未能解决你的问题,请参考以下文章