91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Unity3D如何實現控制攝像機移動

發布時間:2021-05-24 14:02:29 來源:億速云 閱讀:1983 作者:小新 欄目:編程語言

這篇文章將為大家詳細講解有關Unity3D如何實現控制攝像機移動,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

最近公司的幾個項目開發內容基本相同,很多腳本直接復制過來就可以拼接項目。之前一直是代碼愛好者,能自己敲的絕對不去復制粘貼。但是開發速度確實是被耽誤了,所以接下來打算把開發中常用的腳本都發到博客上。自己需要的時候直接拿來。也希望能幫到你們。

unity編輯器中按住鼠標右鍵,在通過控制鍵盤的wasdqe鍵可以自由控制視野。

下面就是實現操作的代碼:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
 
//巡游模式攝像機控制
public class CameraMove : MonoBehaviour
{
 
 public static CameraMove Instance = null;
 
 private Vector3 dirVector3;
 private Vector3 rotaVector3;
 private float paramater = 0.1f;
 //旋轉參數
 private float xspeed = -0.05f;
 private float yspeed = 0.1f;
 
 private float dis;
 
 void Awake ()
 {
 Instance = this;
 }
 
 private void Start()
 {
 rotaVector3 = transform.localEulerAngles;
 dis = UIFuc.Instance.Dis;
 }
 
 // Update is called once per frame
 void FixedUpdate ()
 {
 //旋轉
 if (Input.GetMouseButton(1))
 {
  rotaVector3.y += Input.GetAxis("Horizontal") * yspeed;
  rotaVector3.x += Input.GetAxis("Vertical") * xspeed;
  transform.rotation = Quaternion.Euler(rotaVector3);
 }
 
 //移動
 dirVector3 =Vector3.zero;
 
 if (Input.GetKey(KeyCode.W))
 {
  if(Input.GetKey(KeyCode.LeftShift)) dirVector3.z = 3;
  else dirVector3.z = 1;
 }
 if (Input.GetKey(KeyCode.S))
 {
  if (Input.GetKey(KeyCode.LeftShift)) dirVector3.z = -3;
  else dirVector3.z = -1;
 }
 if (Input.GetKey(KeyCode.A))
 {
  if (Input.GetKey(KeyCode.LeftShift)) dirVector3.x = -3;
  else dirVector3.x = -1;
 }
 if (Input.GetKey(KeyCode.D))
 {
  if (Input.GetKey(KeyCode.LeftShift)) dirVector3.x = 3;
  else dirVector3.x = 1;
 }
 if (Input.GetKey(KeyCode.Q))
 {
  if (Input.GetKey(KeyCode.LeftShift)) dirVector3.y = -3;
  else dirVector3.y = -1;
 }
 if (Input.GetKey(KeyCode.E))
 {
  if (Input.GetKey(KeyCode.LeftShift)) dirVector3.y = 3;
  else dirVector3.y = 1;
 }
 transform.Translate(dirVector3 * paramater,Space.Self);
 //限制攝像機范圍
 transform.position = Vector3.ClampMagnitude(transform.position, dis);
 }
}

由于項目需要限制攝像機的移動范圍,所以我在最后加上了限制的代碼。

關于“Unity3D如何實現控制攝像機移動”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

筠连县| 同仁县| 阳泉市| 黄梅县| 会理县| 岑溪市| 资源县| 高淳县| 体育| 色达县| 江北区| 宁德市| 通道| 漳州市| 合作市| 闽清县| 靖远县| 无棣县| 通渭县| 新巴尔虎左旗| 长顺县| 五家渠市| 大埔区| 城固县| 久治县| 汉源县| 平果县| 莱芜市| 连云港市| 铅山县| 辽宁省| 朝阳县| 灵武市| 萨嘎县| 桃源县| 万载县| 潼关县| 天等县| 桦川县| 建水县| 应城市|