pc와 모바일 동시 빌드시 input system 설정 Move value Vector2 /w, /s, /a, /dTouchDrag Pass Through /primaryTouch/delta using UnityEngine;using UnityEngine.InputSystem;public class PlayerController : MonoBehaviour{ private PlayerInputActions inputActions; private Vector2 moveInput; private Vector2 touchDelta; public float moveSpeed = 5f; private void Awake() { inputActions = new Pl..