摄像机旋转


/*
    [0] 获得相机左右旋转的角度(处理X)
    [1] 获得相机左右旋转的角度(处理Y)
 */
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;

public class CameraRotate : MonoBehaviour
{

    [Tooltip("x灵敏度")]
    public float sensitivityX = 3F;
    [Tooltip("y灵敏度")]
    public float sensitivityY = 5F;

    [Tooltip("上最大视角")]
    public float minimumY = -60F;
    [Tooltip("下最大视角")]
    public float maximumY = 60F;

    private float rotationX = 0F;
    private float rotationY = 0F;


    private void Awake()
    {
        var angle = transform.localEulerAngles;
        rotationX = angle.x;
        rotationY = angle.y;
    }

    //针对摄像机加了PhysicsRaycaster后使用EventSystem.current.IsPointerOverGameObject, 3D物体也会返回true的情况
    bool IsPointerOverGameObject(out List<RaycastResult> results)
    {
        PointerEventData pointerData = new PointerEventData(EventSystem.current);
        pointerData.position = Input.mousePosition;
        results = new List<RaycastResult>();
        EventSystem.current.RaycastAll(pointerData, results);
        return results.Count > 0;
    }

    private bool isDrag = false;
    private List<RaycastResult> results;
    private void Update()
    {
        if(isDrag && !Input.GetMouseButton(0)){
            isDrag = false;
        }
        if (Input.GetMouseButtonDown(0))
        {
            if (IsPointerOverGameObject(out results) && results[0].gameObject.layer == 5) return;
            isDrag = true;
        }
        if (isDrag)
        {
            //! [0]
            rotationX = transform.localEulerAngles.y - Input.GetAxis("Mouse X") * sensitivityX;
            //! [1]
            rotationY += Input.GetAxis("Mouse Y") * sensitivityY;
            rotationY = Mathf.Clamp(rotationY, minimumY, maximumY);
            transform.localEulerAngles = new Vector3(rotationY, rotationX, 0);

        }
    }
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小鱼游戏开发

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值