Version: 2019.4
LanguageEnglish
  • C#

PrefabUtility.GetOutermostPrefabInstanceRoot

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public static GameObject GetOutermostPrefabInstanceRoot(Object componentOrGameObject);

Parameters

componentOrGameObject The object to check. Must be a component or GameObject.

Returns

GameObject The outermost Prefab instance root.

Description

Returns the GameObject that is the root of the outermost Prefab instance the object is part of.

The method will search up the parents in the Transform hierarchy until it finds the root of a Prefab instance which is not an applied nested Prefab inside another Prefab.

If the method finds a Prefab instance root which is an added GameObject to another Prefab instance, it will return that root, since it it not an applied nested Prefab root.

The method will return null if the given object is not part of a Prefab instance. This includes GameObjects or components that have been added and not applied to a Prefab instance.


Overview of which objects are Prefab instance roots.

In the editor, outermost Prefab instance roots have the Overrides dropdown, whereas other Prefab instance roots don’t.

See Also: GetNearestPrefabInstanceRoot.