Unity3D从左到右移动相机,反之亦然C#

时间:2014-05-30 07:33:12

标签: c# unity3d camera

如何让相机从左到右,相对于screenCenter相对于屏幕中心不停地移动,没有输入,我的意思是从游戏开始时自动进行。通过'移动'我的意思是'观看'就像你在不改变原始位置的情况下将头转向右侧和左侧一样。

1 个答案:

答案 0 :(得分:1)

这是一个转动脚本的简单示例(将其调整为最适合您的任何内容)

int timer = 0;
int direction = 1;
// Update is called once per frame
void Update () {
    if (timer % 50 == 0)
        direction *= -1;
    transform.Rotate (new Vector3 (0, 1 * direction, 0));
    timer++;
}


另外,请查看Unity Answers他们应该提供更多帮助