码迷,mamicode.com
首页 > 移动开发 > 详细

Unity 模仿scene视图相机视角移动

时间:2020-05-11 15:26:13      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:float   collect   nsf   date()   视角   相机   get   local   oat   

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

public class Cam : MonoBehaviour
{
    void Start()
    {

    }

    void Update()
    {
        if (Input.GetMouseButton(1))
        {
            float x = Input.GetAxis("Mouse X");
            float y = Input.GetAxis("Mouse Y");
            transform.Rotate(new Vector3(-y, x)*3);

            Vector3 v = transform.localEulerAngles;
            transform.localEulerAngles = new Vector3(v.x,v.y,0);
        }

        if (Input.GetMouseButton(0))
        {
            float x = Input.GetAxis("Mouse X");
            float y = Input.GetAxis("Mouse Y");
            transform.Translate(new Vector3(-x, -y));
        }

        transform.Translate(Vector3.forward*Input.GetAxis("Mouse ScrollWheel")*3);

    }
}

 

Unity 模仿scene视图相机视角移动

标签:float   collect   nsf   date()   视角   相机   get   local   oat   

原文地址:https://www.cnblogs.com/Feiyuzhu/p/12868985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!