그래픽스 레이캐스터는 캔버스에 레이캐스트를 하는 데 사용한다.
이번에 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함수를 활용했다.
'내배켐 Unity TIL' 카테고리의 다른 글
Unity 64일차 TIL - Unity (2D ItemInventory4_InventoryUIDragAndDrop) (0) | 2024.07.15 |
---|---|
Unity 63일차 TIL - Unity (2D ItemInventory3_ItemTooltipUI) (0) | 2024.07.10 |
Unity 59일차 TIL - Unity (2D ItemInventory2_InventoryUI) (0) | 2024.07.04 |
Unity 58일차 TIL - Unity (2D ItemInventory1_SlotUI) (0) | 2024.07.03 |
Unity 57일차 TIL - Unity (C# Class 상속) (0) | 2024.07.02 |