2019년 5월 8일 수요일

자식 text객체의 크기에 맞춰 rectTransform Size 변경

자식 text객체의 크기에 맞춰 rectTransform Size 변경


자식 text객체에는 content size를 넣어줘서 크기 변경하게 하고
변경을 원하는 객체에 해당 스크립트를 적용시키면 됨

1
2
3
4
5
6
7
8
9
if (this.gameObject.GetComponent<RectTransform>().sizeDelta.x != TargetText.preferredWidth)
 
        {
 
            this.gameObject.GetComponent<RectTransform>().sizeDelta = new Vector2(TargetText.preferredWidth, TargetText.preferredHeight);
 
            Debug.Log("size변경");
 
        }
cs

댓글 없음:

댓글 쓰기

git rejected error(feat. cherry-pick)

 문제 아무 생각 없이 pull을 받지않고 로컬에서 작업! 커밋, 푸시 진행을 해버렷다. push에선 remote와 다르니 당연히 pull을 진행해라고 하지만 로컬에서 작업한 내용을 백업하지 않고 진행하기에는 부담스럽다(로컬작업 유실 가능성) 해결하려...