Version: 2017.1

PrefabUtility.FindValidUploadPrefabInstanceRoot

매뉴얼로 전환
public static GameObject FindValidUploadPrefabInstanceRoot (GameObject target);

파라미터

target GameObject to process.

반환

GameObject Return the root game object of the prefab asset.

설명

Returns root game object of the prefab instance if that root prefab instance is a parent of the prefab.

A prefab internally consists of a Prefab object and the list of objects used for the prefab. The Prefab object has a pointer to the root game object and if the prefab is an instance then it also contains a pointer to the asset it was created from and a list of modifications done to the instance.

This works in the same way as PrefabUtility.FindRootGameObjectWithSameParentPrefab but it will return the root game object of the prefab asset. This is useful if you have a disconnected prefab instance object and you want to know the root game object of the prefab asset which it used to be connected to.