[ Web Proxy ]
URL:
Viewing: https://docs.unity3d.com/ScriptReference/PrefabUtility.IsOutermostPrefabInstanceRoot.html [Back]  [Original]

Unity - Scripting API: PrefabUtility.IsOutermostPrefabInstanceRoot
Version: Unity 6.5 (6000.5)
    • Supported
    • Legacy
    LanguageEnglish
    • C#

    PrefabUtility.IsOutermostPrefabInstanceRoot

    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
    Your name Your email Suggestion* Submit suggestion

    Cancel

    Declaration

    public static bool IsOutermostPrefabInstanceRoot(GameObject gameObject);

    Parameters

    Parameter Description
    gameObject The GameObject to check.

    Returns

    bool True if the GameObject is an outermost Prefab instance root.

    Description

    Returns true if the given GameObject is an outermost Prefab instance root.

    Returns true if the GameObject is the root GameObject of a Prefab instance, which is not itself part of another Prefab instance.

    This also returns true for outermost Prefab instance roots inside a Prefab Asset. Note that a Prefab Asset is not in itself a Prefab instance, but it may contain Prefab instances.

    If the GameObject is a Prefab instance root which is an added GameObject to another Prefab instance, it will return true, since it is not itself part of another Prefab instance.

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

    PrefabInstanceRoots.png [PrefabInstanceRoots.png]
    Overview of which objects are Prefab instance roots.

    In the editor, outermost Prefab instance roots have the Overrides dropdown, whereas other Prefab instance roots dont.

    Additional resources: IsAnyPrefabInstanceRoot.


    Web Proxy Viewer  |  New URL  |  Original Page