random 위치에서 random한 동물들이 생성되어 농부에게 뛰어든다. 농부는 좌우로 이동하며 동물들에게 먹이를 줘야 한다. 1. Player x 값 제한하기 using UnityEngine; public class PlayerController : MonoBehaviour { private const float SPEED = 10f; private const float X_RANGE = 13f; private float horizontalInput; void Update(){ //keep the player in the bounds if (transform.position.x > X_RANGE) transform.position = new Vector3(X_RANGE, transform.positio..