본문 바로가기

내배켐 Unity TIL

Unity 60일차 TIL - Unity (Graphic RayCaster)

그래픽스 레이캐스터는 캔버스에 레이캐스트를 하는 데 사용한다.

 

이번에 Inventory UI를 만들고 Slot UI를 DragAndDrop 기능을 만들 때 사용했던 레이캐스트이다.

 

 

기본적으로 Canvas에 같이 붙어있는데 각 기능들은 이렇다.

 

Ignore Reversed Graphics - 레이캐스터가 후면 그래픽스를 무시할지 여부

Blocked Objects - 그래픽 레이캐스트를 막을 오브젝트 타입

Blocking Mask - 그래픽 레이캐스트를 막을 Layer 타입

 

그래서 Blocking Mask에서 레이캐스트를 허용할 layer만 남겨두면 된다.

 

private GraphicRaycaster gr;

ped = new PointerEventData(EventSystem.current);
rrList = new List<RaycastResult>(10);

 

gr.Raycast(ped, rrList);

 

GraphicRayCaster.Raycast를 사용하기 위해서는 매개변수로 PointerEventData와 List<RayCastResult> 가 필요하다.

 

private T RaycastAndGetFirstComponent<T>() where T : Component
{
    rrList.Clear();

    gr.Raycast(ped, rrList);

    if (rrList.Count == 0)
        return null;

    return rrList[0].gameObject.GetComponent<T>();
}

 

그래서 이런식으로 함수를 만들어서 Drag And Drop 됐을 때

beginDragSlot = RaycastAndGetFirstComponent<ItemSlotUIs>(); 만들어둔 RayCast함수를 활용했다.