이제 한 20%는 한거같다 기본동작은 다 만들었고 이제 맵만들기 노가다하면서 함정을 만들것이다 using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement; public class Player_move : MonoBehaviour { public float maxSpeed; public float JumpPower; Rigidbody2D rigid; SpriteRenderer spritrRenderer; Animator anim; void Awake() { rigid = GetComponent(); spritrRenderer = GetComponent(); anim..