這篇文章主要講解了Unity3D實(shí)現(xiàn)攝像機(jī)鏡頭移動(dòng)并限制角度的方法,內(nèi)容清晰明了,對(duì)此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會(huì)有幫助。
堅(jiān)守“ 做人真誠(chéng) · 做事靠譜 · 口碑至上 · 高效敬業(yè) ”的價(jià)值觀,專(zhuān)業(yè)網(wǎng)站建設(shè)服務(wù)10余年為成都宴會(huì)酒店設(shè)計(jì)小微創(chuàng)業(yè)公司專(zhuān)業(yè)提供成都企業(yè)網(wǎng)站建設(shè)營(yíng)銷(xiāo)網(wǎng)站建設(shè)商城網(wǎng)站建設(shè)手機(jī)網(wǎng)站建設(shè)小程序網(wǎng)站建設(shè)網(wǎng)站改版,從內(nèi)容策劃、視覺(jué)設(shè)計(jì)、底層架構(gòu)、網(wǎng)頁(yè)布局、功能開(kāi)發(fā)迭代于一體的高端網(wǎng)站建設(shè)服務(wù)。
攝像機(jī)鏡頭跟隨鼠標(biāo)移動(dòng),并限制上下左右的移動(dòng)角度
public class ViewFromCream : MonoBehaviour { public int speed=5; public Vector3 vect; private float xcream; private float ycream; public void Update() { CreamView(); } private void CreamView() { float x = Input.GetAxis("Mouse X"); float y = Input.GetAxis("Mouse Y"); if (x!=0||y!=0) { LimitAngle(60); LimitAngleUandD(60); this.transform.Rotate(-y * speed, 0, 0); this.transform.Rotate(0, x * speed, 0, Space.World); } } ////// 限制相機(jī)左右視角的角度 /// /// 角度 private void LimitAngle(float angle) { vect = this.transform.eulerAngles; //當(dāng)前相機(jī)x軸旋轉(zhuǎn)的角度(0~360) xcream = IsPosNum(vect.x); if (xcream > angle) this.transform.rotation = Quaternion.Euler(angle,vect.y,0); else if (xcream < -angle) this.transform.rotation = Quaternion.Euler(-angle, vect.y, 0); } ////// 限制相機(jī)上下視角的角度 /// /// private void LimitAngleUandD(float angle) { vect = this.transform.eulerAngles; //當(dāng)前相機(jī)y軸旋轉(zhuǎn)的角度(0~360) ycream = IsPosNum(vect.y); if (ycream > angle) this.transform.rotation = Quaternion.Euler(vect.x, angle, 0); else if (ycream < -angle) this.transform.rotation = Quaternion.Euler(vect.x, -angle, 0); } ////// 將角度轉(zhuǎn)換為-180~180的角度 /// /// ///private float IsPosNum(float x) { x -= 180; if (x < 0) return x + 180; else return x - 180; } }
對(duì)IsPosNum方法進(jìn)行說(shuō)明
之所以要將獲取的歐拉角轉(zhuǎn)換為-180°-180°之間,是因?yàn)樵讷@取eulerAngle中,x軸和y軸的值只有0-360,而沒(méi)有負(fù)數(shù),那么這將會(huì)復(fù)雜化我們角度的判斷,如限制左右角度為-60-60之間,那么我們就要判斷角度是否超過(guò)300度或是超過(guò)60度, 顯然超過(guò)300度的角度必定超過(guò)60度,那么就需要另外加條件進(jìn)行判斷;因此對(duì)獲取的值進(jìn)行轉(zhuǎn)化更為方便!
看完上述內(nèi)容,是不是對(duì)Unity3D實(shí)現(xiàn)攝像機(jī)鏡頭移動(dòng)并限制角度的方法有進(jìn)一步的了解,如果還想學(xué)習(xí)更多內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。