유니티1 [Unity/유니티] 유니티 드래그 앤 드롭 ◆ 필요한 기능해당 오브젝트를 드래그 앤 드롭하여 드롭 위치로 옮기는 것 코드UI 에 적용 가능한 코드using System.Collections;using System.Collections.Generic;using UnityEngine;using UnityEngine.EventSystems;public class Mousedrag : MonoBehaviour, IBeginDragHandler, IDragHandler, IEndDragHandler{ public void OnBeginDrag(PointerEventData eventData) { Debug.Log("Begin Drag"); } public void Ondrag(PointerEventData eventD.. 2024. 11. 17. 이전 1 다음