unity 调整摄像机视角完整脚本

 脚本作为组件挂在摄像机上即可,调用接口开关IsControlMove,控制是否启用;

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;

public class CameraMove : MonoBehaviour {

    //public Transform target;
    public Vector3 target;
    private Vector3 offset;
    private bool IsControlMove; 
    private Vector3 _position = Vector3.zero;
    private Quaternion _rotation = Quaternion.identity;
    private float _xAngles = 0.0f;
    private float _yAngles = 0.0f; 
    private float m_xAngles = 0.0f;
    private float m_yAngles = 0.0f;     
    private float m_xSpeed = 100f;
    private float m_ySpeed = 100f;
    //Limit
    private float m_xMinValue = -15f; 
    private float m_xMaxValue = 15;
    private float m_yMinValue = -15;
    private float m_yMaxValue = 15;
    private float m_limitChangeTime = 3.0f;
	void Awake ()
	{ 
        //Init
        Vector3 myCameraAngles = transform.eulerAngles;
	    _xAngles = myCameraAngles.y;
	    _yAngles = myCameraAngles.x;
        _position = transform.position;
        _rotation = transform.rotation;
        m_xAngles = myCameraAngles.y;
        m_yAngles = myCameraAngles.x;
	    offset = transform.position - target;
	}
    void LateUpdate () {
        if (IsControlMove)
        { 
            if (Application.platform == RuntimePlatform.WindowsEditor)
            { 
                if (Input.GetMouseButton(0) && !EventSystem.current.IsPointerOverGameObject())
                {
                    CameraChange();
                }
                if (Input.GetMouseButtonUp(0))
                {
                    InitDataOfCamera();
                }
            }
            else if (Application.platform == RuntimePlatform.Android ||
                     Application.platform == RuntimePlatform.IPhonePlayer)
            {
                if (Input.touchCount == 1)
                {
                    if (Input.touches[0].phase == TouchPhase.Moved)
                    {
                        //Move
                        CameraChange();
                    }
                }
                if (Input.touches[0].phase == TouchPhase.Ended && Input.touches[0].phase != TouchPhase.Canceled)
                {
                    InitDataOfCamera();
                }
            }
        }
	}
    public void CameraChange()
    {
        m_xAngles -= Input.GetAxis("Mouse X") * m_xSpeed * 0.02f;
        m_xAngles = Mathf.Clamp(m_xAngles, m_xMinValue, m_xMaxValue);
        m_yAngles += Input.GetAxis("Mouse Y") * m_ySpeed * 0.02f;
        m_yAngles = Mathf.Clamp(m_yAngles, m_yMinValue, m_yMaxValue);
        var rotation = Quaternion.Euler(m_yAngles, m_xAngles, 0);
        Vector3 position = rotation * offset + target;
        transform.rotation = rotation;
        transform.position = position;
    }
    /// <summary>
    /// Init Data
    /// </summary>
     public void InitDataOfCamera()
    {
        m_xAngles = _xAngles;
        m_yAngles = _yAngles;
        transform.position = Vector3.Lerp(transform.position, _position, m_limitChangeTime);
        transform.rotation = Quaternion.Slerp(transform.rotation, _rotation, m_limitChangeTime);
    }
    public void OnCameraControl(bool value)
    {
        IsControlMove = value;
    }
}

  

转载于:https://www.cnblogs.com/allyh/p/8996695.html

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值