문제상황 public class SignScript : MonoBehaviour { public string text; } 다음과 같이 public으로 변수를 선언하면 unity 엔진에서 해당 변수의 값을 오브젝트마다 넣어줄 수 있다. 이때 string의 경우 Enter는 입력되지 않고, \n과 같은 줄바꿈 문자를 삽입하더라도 줄바꿈이 일어나지 않는다. 이는 입력한 \n을 \\n으로 인식해 작성한 그대로 화면에 출력하기 때문이다. 해결방법 1. Replace함수 사용 public class SignScript : MonoBehaviour { public string text; // Start is called before the first frame update void Start() { text = t..