오늘은 드디어 움직여 볼건데요, 저번에 설명할때 쓰였던 Move 스크립트로 들어가 줍니다. using System.Collections; using System.Collections.Generic; using UnityEngine; public class Move : MonoBehaviour { Rigidbody2D rigid; public float Movesp; Vector3 moove; // Start is called before the first frame update void Start() { rigid = gameObject.GetComponent (); } // Update is called once per frame void FixedUpdate() { PMove(); } void PMo..