Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/unity3d/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 如何让相机';s垂直旋转上下移动相机?_C#_Unity3d_Camera_Mouse - Fatal编程技术网

C# 如何让相机';s垂直旋转上下移动相机?

C# 如何让相机';s垂直旋转上下移动相机?,c#,unity3d,camera,mouse,C#,Unity3d,Camera,Mouse,我在游戏中有一个玩家,我可以用键盘移动,用鼠标只能在水平轴上旋转。也就是说,我只能水平瞄准,不能上下瞄准 我有Cinemachine的主摄像头和另一个VM摄像头。游戏的当前状态如下: 在水平轴上,我旋转播放机,但在垂直轴上,我只希望播放机的摄影机/视野上下移动 我附加到播放器的移动脚本是: using System.Collections; using System.Collections.Generic; using UnityEngine; public class PlayerMov

我在游戏中有一个玩家,我可以用键盘移动,用鼠标只能在水平轴上旋转。也就是说,我只能水平瞄准,不能上下瞄准

我有Cinemachine的主摄像头和另一个VM摄像头。游戏的当前状态如下:

在水平轴上,我旋转播放机,但在垂直轴上,我只希望播放机的摄影机/视野上下移动

我附加到播放器的移动脚本是:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
 
public class PlayerMovement : MonoBehaviour
{
    public CharacterController characterController;
    public float speed = 35f;
    public Animator animator;
 
    // camera and rotation
    public Transform cameraHolder;
    public float mouseSensitivity = 2f;
    public float upLimit = 50;
    public float downLimit = -50;
 
    // gravity
    private float gravity = 9.87f;
    private float verticalSpeed = 0;
 
 
    void Update()
    {
        Move();
        Rotate();
    }
 
 
    public void Rotate()
    {
        float horizontalRotation = Input.GetAxis("Mouse X");
        float verticalRotation = Input.GetAxis("Mouse Y");
 
        transform.Rotate(0, horizontalRotation * mouseSensitivity, 0);
        cameraHolder.Rotate(-verticalRotation * mouseSensitivity, 0, 0);
 
        Vector3 currentRotation = cameraHolder.localEulerAngles;
        if (currentRotation.x > 180) currentRotation.x -= 360;
        currentRotation.x = Mathf.Clamp(currentRotation.x, upLimit, downLimit);
        cameraHolder.localRotation = Quaternion.Euler(currentRotation);
    }
 
    private void Move()
    {
        float horizontalMove = Input.GetAxis("Horizontal");
        float verticalMove = Input.GetAxis("Vertical");
 
        if (characterController.isGrounded) verticalSpeed = 0;
        else verticalSpeed -= gravity * Time.deltaTime;
        Vector3 gravityMove = new Vector3(0, verticalSpeed, 0);
 
        Vector3 move = transform.forward * verticalMove + transform.right * horizontalMove;
        characterController.Move(speed * Time.deltaTime * move + gravityMove * Time.deltaTime);
    }
}

这是我使用的代码,它对我有用,非常容易实现,当你不对焦游戏时停止移动相机,Brackey教程中的脚本是否为此修改过:

using UnityEngine;

public class CameraController : MonoBehaviour
{
    public PlayerController player;
    public float sensitivity = 150f;
    public float clampAngle = 85f;
    public bool look = true;

    private float verticalRotation;
    private float horizontalRotation;

    private void Start()
    {
        verticalRotation = transform.localEulerAngles.x;
        horizontalRotation = player.transform.eulerAngles.y;

        // Defines the state of the cursor
        Cursor.lockState = CursorLockMode.Locked;
        Cursor.visible = false;
    }

    private void Update()
    {
        // Looks around if the user is in the window
        if (look)
        {
            Look();
        }
        Debug.DrawRay(transform.position, transform.forward * 2, Color.red);

        // If the player presses ESC while in the game, it unlocks the cursor
        if (look && Input.GetKeyDown(KeyCode.Escape))
        {
            look = false;
            Cursor.lockState = CursorLockMode.None;
            Cursor.visible = true;
        }
        else if (Input.GetMouseButtonDown(0) && !look)
        {
            look = true;
            Cursor.lockState = CursorLockMode.Locked;
            Cursor.visible = false;
        }

    }

    private void Look()
    {
        float _mouseVertical = -Input.GetAxis("Mouse Y");
        float _mouseHorizontal = Input.GetAxis("Mouse X");

        verticalRotation += _mouseVertical * sensitivity * Time.deltaTime;
        horizontalRotation += _mouseHorizontal * sensitivity * Time.deltaTime;

        verticalRotation = Mathf.Clamp(verticalRotation, -clampAngle, clampAngle);

        transform.localRotation = Quaternion.Euler(verticalRotation, 0f, 0f);
        player.transform.rotation = Quaternion.Euler(0f, horizontalRotation, 0f);
    }
}

只上下旋转摄像机而不是播放器是不起作用的。