Engine/Unity

[Unity TIL] transform.Find("Child/ChildOfChild") 성능

VirtualDever 2022. 3. 27. 13:05

transform.Find()는 성능에 큰 영향을 주지 않습니다.

유니티 공식 스크립트 레퍼런스 문서에 따르면, 아래와 같이 설명합니다.

 

Note: Find does not perform a recursive descend down a Transform hierarchy.

 

사용 방법은 파라미터에 Hierarchy 상의 경로를 지정하고 슬래시로 구분합니다.

 

출처 - https://docs.unity3d.com/2021.1/Documentation/ScriptReference/Transform.Find.html

 

Unity - Scripting API: Transform.Find

If no child with name n can be found, null is returned. If n contains a '/' character it will access the Transform in the hierarchy like a path name. Note: Find does not perform a recursive descend down a Transform hierarchy.

docs.unity3d.com