TA/Unity2016. 3. 22. 01:19

ngui 줄바꿈 문제가 있었습니다.

아래 글 긁어왔습니다.

 

출처 : http://www.tasharen.com/forum/index.php?topic=4114.msg20026#msg20026

 

 

UI Label.cs

From


   public string text
   {
      get
      {
         return mText;
      }
      set
      {
         if (string.IsNullOrEmpty(value))
         {
            if (!string.IsNullOrEmpty(mText))
               mText = "";
            hasChanged = true;
         }
         else if (mText != value)
         {
            mText = value;   <=== Here
            hasChanged = true;
         }
      }
   }


To


   public string text
   {
      get
      {
         return mText;
      }
      set
      {
         if (string.IsNullOrEmpty(value))
         {
            if (!string.IsNullOrEmpty(mText))
               mText = "";
            hasChanged = true;
         }
         else if (mText != value)
         {
            mText = value.Replace("\\n", "\n");  <== Here
            hasChanged = true;
         }
      }
   }

'TA > Unity' 카테고리의 다른 글

XML의 문법  (0) 2016.03.22
Unity json 파싱  (0) 2016.03.22
객체의 자식을 찾을 떄, 객체를 자식으로 넣을때..  (0) 2015.07.12
카메라 이동 영역 제한을 위한 방법(4개 포지션)  (0) 2013.10.25
간단한 씬 로딩  (0) 2013.10.15
Posted by 프리랜서 디자이너