Version: 2022.3
LanguageEnglish
  • C#
Method group is Obsolete

PrefabUtility.FindValidUploadPrefabInstanceRoot

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

Obsolete FindValidUploadPrefabInstanceRoot is deprecated, please use GetOutermostPrefabInstanceRoot instead.

Declaration

public static GameObject FindValidUploadPrefabInstanceRoot(GameObject target);

Parameters

target GameObject to process.

Returns

GameObject Return the root game object of the Prefab Asset.

Description

Returns the root GameObject 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 reference to the root GameObject. Also, if the Prefab is an instance, it contains a reference to the Prefab Asset it was created from and a list of the overrides (if any) on the instance.

This works in the same way as PrefabUtility.FindRootGameObjectWithSameParentPrefab but it will return the root GameObject 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.