May 9, 2016

Animator 현재 재생 중인 상태 가져오기

유니티 Animator
현재 재생 중인 상태 가져오기

Animator.GetCurrentAnimatorStateInfo(int layerIndex)


참고 : http://sharkmino.tistory.com/1444

Feb 7, 2016

Unity NGUI Label에 한글 적용 문제 해결

[ LINK ] 유니티 NGUI에서 라벨에 한글 적용하기 (1)

[ LINK ] 유니티 NGUI에서 라벨에 한글 적용하기 (2)

--------------------------

+ 추가

한글이 같은자리에서만 입력되는 문제
-> 모바일에서는 문제없으나 에디터에서만 문제 발생.
-> UIInput.cs 수정하면 해결 됨.

if (string.IsNullOrEmpty(ime) && !string.IsNullOrEmpty(Input.inputString))
=> if (!string.IsNullOrEmpty(Input.inputString))