본문 바로가기
개발/Unity

유니티 시네머신 - FreeLook + TargetGroup으로 전체 지도 촬영하기

by 피로물든딸기 2022. 10. 2.
반응형

Unity 전체 링크

 

아래와 같이 Target Group으로 전체 맵을 카메라에 담을 수 있다.

 

하지만 전체 맵, 지도를 회전시키거나 조금 다른 각도에서 보고 싶을 때도 있다.

이런 경우에 적합한 카메라는 FreeLook 카메라다.

 

프리룩 카메라에 타겟 그룹을 설정해보자.


 

TargetGroup을 만들고 Position을 설정하자. 

FreeLook 카메라에 타겟을 설정하기 때문에 기존의 카메라는 지운다.

 

FreeLook에 Follow와 Look At에 TargetGroup을 설정한다.

 

그리고 AimGroup Composer로 설정한다.

여기서 Top, BottomGroup Composer로 설정해야 한다.

그렇지 않으면 카메라의 시야가 위, 아래일 때 Group Composer가 아니기 때문에 Target이 화면에 담기지 않는다.

 

화면이 아래와 같이 보이게 되는데, Rig의 위치반지름이 적절하지 않아서 나타나는 현상이다.

 

타겟 그룹이 설정되어있기 때문에 Rig의 Height와 Radius를 적당히 설정해도 타겟이 화면에 잘 들어가게 된다.

 

마우스 클릭 시에만 카메라가 움직이도록 FreeLook 카메라에 CMFreelookSetting.cs를 추가하자.

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

public class CMFreelookSetting : MonoBehaviour
{
    void Awake()
    {
        CinemachineCore.GetInputAxis = clickControl;
    }

    public float clickControl(string axis)
    {
        if(Input.GetMouseButton(0))
            return UnityEngine.Input.GetAxis(axis);

        return 0;
    }
}

 

마우스를 드래그하면 TargetGroup이 설정된 상태에서 전체 맵을 둘러볼 수 있게 된다.

 

위, 아래로 카메라가 움직이는 것이 싫다면,

Top, Bottom의 HeightRadius를 Middle과 동일하게 설정해서 경로를 제한하면 된다.

 

Unity Plus:

 

Easy 2D, 3D, VR, & AR software for cross-platform development of games and mobile apps. - Unity Store

Have a 2D, 3D, VR, or AR project that needs cross-platform functionality? We can help. Take a look at the easy-to-use Unity Plus real-time dev platform!

store.unity.com

 

Unity Pro:

 

Unity Pro

The complete solutions for professionals to create and operate.

unity.com

 

Unity 프리미엄 학습:

 

Unity Learn

Advance your Unity skills with live sessions and over 750 hours of on-demand learning content designed for creators at every skill level.

unity.com

반응형

댓글