Version: 2017.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

PrefabUtility.InstantiatePrefab

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

public static method InstantiatePrefab(target: Object): Object;
public static Object InstantiatePrefab(Object target);
public static method InstantiatePrefab(target: Object, destinationScene: SceneManagement.Scene): Object;
public static Object InstantiatePrefab(Object target, SceneManagement.Scene destinationScene);

Parameters

targetPrefab asset to instantiate.
destinationSceneScene to instantiate the prefab in.

Returns

Object The GameObject at the root of the prefab.

Description

Instantiates the given prefab in a given scene.

This is similar to Instantiate but creates a prefab connection to the prefab. If a scene handle is not given the prefab is instantiated in the active scene.

@MenuItem("Examples/Instantiate Selected")
static function CreatePrefab() {
    var clone : GameObject = PrefabUtility.InstantiatePrefab(Selection.activeObject as GameObject) as GameObject;
}

@MenuItem("Examples/Instantiate Selected", true) static function ValidateCreatePrefab() { GameObject go = Selection.activeObject as GameObject; if (go == null) return false;

return PrefabUtility.GetPrefabType(go) == PrefabType.Prefab || PrefabUtility.GetPrefabType(go) == PrefabType.ModelPrefab; }
using UnityEngine;
using UnityEditor;

public class Example : EditorWindow { [MenuItem("Examples/Instantiate Selected")] static void CreatePrefab() { GameObject clone = PrefabUtility.InstantiatePrefab(Selection.activeObject as GameObject) as GameObject; }

[MenuItem("Examples/Instantiate Selected", true)]

static bool ValidateCreatePrefab() { GameObject go = Selection.activeObject as GameObject; if (go == null) return false;

return PrefabUtility.GetPrefabType(go) == PrefabType.Prefab || PrefabUtility.GetPrefabType(go) == PrefabType.ModelPrefab; } }