[펌] NGUI의 UILabel에서 개행(\n)이 안되는 문제
I Just Modified UI Label Code
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;
}
}
}
I Didn't consider performance
[출처] http://www.tasharen.com/forum/index.php?topic=4114.msg20026#msg20026
[참조] http://www.devkorea.co.kr/bbs/board.php?bo_table=m03_qna&wr_id=31752
'Unity3D > NGUI' 카테고리의 다른 글
[NGUI] 스크롤뷰(패널) 맨끝으로 드래그했을때 처리 (0) | 2018.01.11 |
---|---|
[펌] NGUI 최적화의 핵심 (0) | 2017.10.11 |
[펌][NGUI] UI와 일반 오브젝트의 터치 이벤트 처리. (0) | 2017.06.01 |
[펌] Blur filter for UITexture in NGUI (0) | 2017.02.09 |
[펌] NGUI 쉽게 말풍선 만들기 (0) | 2017.02.03 |