Posts 유니티 - 컴포넌트의 인스펙터 내 순서를 맨 위로 올리기
Post
Cancel

유니티 - 컴포넌트의 인스펙터 내 순서를 맨 위로 올리기

1
2
3
4
5
6
bool flag = true;
while (flag)
{
    flag = UnityEditorInternal.ComponentUtility.MoveComponentUp(this);
    // 맨 위로 올라갔을 경우 false 리턴
}
This post is licensed under CC BY 4.0 by the author.