반응형
Cinemachine Tutorial
- (2) 마우스 버튼 클릭으로 FreeLook Camera 컨트롤하기
- (3) 마우스 스크롤로 FreeLook Camera Zoom in / out (FreeLook Camera Zoom in / out with Scroll)
- 멀티 터치 드래그를 이용하여 카메라 줌 인 / 아웃
프리룩 카메라를 줌 인 / 줌 아웃하는 방법도 clickControl에서 처리가 가능하다.
CMFreelookSetting.cs를 아래와 같이 수정하자.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Cinemachine;
public class CMFreelookSetting : MonoBehaviour
{
CinemachineFreeLook freeLook;
public float scrollSpeed = 2000.0f;
void Awake()
{
CinemachineCore.GetInputAxis = clickControl;
}
void Start()
{
freeLook = this.GetComponent<CinemachineFreeLook>();
}
public float clickControl(string axis)
{
float scrollWheel = Input.GetAxis("Mouse ScrollWheel");
freeLook.m_Lens.FieldOfView += scrollWheel * Time.deltaTime * scrollSpeed;
if (Input.GetMouseButton(0))
return UnityEngine.Input.GetAxis(axis);
return 0;
}
}
scrollSpeed를 설정해서 FreeLook 카메라의 FieldOfView를 변경하였다.
Unity Plus:
Unity Pro:
Unity 프리미엄 학습:
반응형
'개발 > Unity' 카테고리의 다른 글
(4) 스크립트로 FreeLook Camera 제어하기 - 유니티 시네머신 튜토리얼 (0) | 2022.09.19 |
---|---|
유니티 컴파일 옵션 변경하기 (Recompile After Finished Playing) (0) | 2022.09.17 |
(2) 마우스 버튼 클릭으로 FreeLook Camera 컨트롤하기 - 유니티 시네머신 튜토리얼 (0) | 2022.09.14 |
(1) Project Setting - 유니티 시네머신 튜토리얼 (0) | 2022.09.14 |
유니티 - 스포트 라이트가 오브젝트를 관통하는 문제 해결하기 (How to Fix the Spot Light Through the GameObject) (0) | 2022.08.31 |
댓글