public static GameObject SavePrefabAsset (GameObject asset);
public static GameObject SavePrefabAsset (GameObject asset, out bool savedSuccessfully);

Parámetros

assetAny GameObject that is part of the Prefab Asset to save.
savedSuccessfullyThe result of the save action, either successful or unsuccessful. Use this together with the console log to get more insight into the save process.

Valor de retorno

GameObject The root GameObject of the saved Prefab Asset.

Descripción

Use this function to save the version of an existing Prefab Asset that exists in memory back to disk.

The given object has to be a GameObject from an existing Prefab Asset. If you have a GameObject from a Prefab instance and get the corresponding object, you will have the corresponding GameObject from the Prefab Asset.

See Also: PrefabUtility.SaveAsPrefabAsset, PrefabUtility.GetCorrespondingObjectFromSource.