PrefabUtility.SaveAsPrefabAssetAndConnect

Cambiar al Manual
public static GameObject SaveAsPrefabAssetAndConnect (GameObject root, string assetPath, InteractionMode action);

Parámetros

instanceRootThe GameObject to save as a Prefab and make into a Prefab instance.
assetPathThe path to save the Prefab at.
actionThe interaction mode to use for this action.
successThe result of the save action, either successful or unsuccessful. Use this together with the console log to get more insight into the save process.

Descripción

Use this function to create a Prefab Asset at the given path from the given GameObject including any childen in the Scene and at the same make the given GameObject into an instance of the new Prefab.

In case some of the children are Prefab instances they will automatically become nested inside the new Prefab.

The input object has to be a plain GameObject or the outermost root of a Prefab Instance.

If the input object is a Prefab instance root the resulting Prefab will be a Variant Prefab. Should you in this case actually want to create a new uniqueue Prefab you need to unpack the instance first.

See Also: SaveAsPrefabAsset, UnpackPrefabInstance.