regins1 [ 유니티로 만들기 ]레인즈 (reigns) 게임 처럼 카드를 좌,우로 움직여서 선택지 고르기 using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.EventSystems; public enum e_CardPosition // 현재 카드가 가운데인지 왼쪽,오른쪽인지 나타는 enum { Center, Left, Right, } public class CS_UI_Card : MonoBehaviour, IPointerDownHandler, IDragHandler, IEndDragHandler { private RectTransform cardRectTransform; private Vector2 dragStartPosition; private Vector2 previousDragPos.. 2023. 6. 19. 이전 1 다음