Unity3D 마우스 제어 시각 회전 실현
코드 는 다음 과 같 습 니 다:
C\#스 크 립 트(Unity 5.5.1 에서 실행 가능):
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MouseView : MonoBehaviour {
public enum RotationAxes
{
MouseXAndY = 0,
MouseX = 1,
MouseY = 2
}
public RotationAxes m_axes = RotationAxes.MouseXAndY;
public float m_sensitivityX = 10f;
public float m_sensitivityY = 10f;
//
public float m_minimumX = -360f;
public float m_maximumX = 360f;
// ( 45°)
public float m_minimumY = -45f;
public float m_maximumY = 45f;
float m_rotationY = 0f;
// Use this for initialization
void Start () {
//
if (GetComponent<Rigidbody>()) {
GetComponent<Rigidbody> ().freezeRotation = true;
}
}
// Update is called once per frame
void Update () {
if (m_axes == RotationAxes.MouseXAndY) {
float m_rotationX = transform.localEulerAngles.y + Input.GetAxis ("Mouse X") * m_sensitivityX;
m_rotationY += Input.GetAxis ("Mouse Y") * m_sensitivityY;
m_rotationY = Mathf.Clamp (m_rotationY, m_minimumY, m_maximumY);
transform.localEulerAngles = new Vector3 (-m_rotationY, m_rotationX, 0);
} else if (m_axes == RotationAxes.MouseX) {
transform.Rotate (0, Input.GetAxis ("Mouse X") * m_sensitivityX, 0);
} else {
m_rotationY += Input.GetAxis ("Mouse Y") * m_sensitivityY;
m_rotationY = Mathf.Clamp (m_rotationY, m_minimumY, m_maximumY);
transform.localEulerAngles = new Vector3 (-m_rotationY, transform.localEulerAngles.y, 0);
}
}
}
호출 시 이 스 크 립 트 를 물체 에 연결 하면 됩 니 다.이곳 은 바 인 딩 카메라 로 카 메 라 를 1 인칭 시각 으로 돌린다.이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Unity 공부 일지~블렌드 셰이프 조작 방법 그 ①게임을 만들고 싶다 ~라고 생각하고 마지막 날부터 Unity를 만지기 시작했습니다 HITOMI2236입니다. 이번 블렌드 셰이프에 대해 조사했으므로 여기에 기록하려고 합니다. 개인용 메모입니다만, 만약 같은 곳에서 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.