Version: 2022.3

PrefabUtility.ApplyAddedGameObjects

切换到手册
public static void ApplyAddedGameObjects (GameObject[] gameObjects, string assetPath, InteractionMode action);

参数

gameObjects The added GameObjects on the Prefab instance to apply.
assetPath 要应用到的预制件资源的路径。
action 此操作的交互模式。

描述

Applies the added GameObjects to the Prefab Asset at the given asset path.

This method allows you to apply added GameObjects to an existing Prefab. It mirrors the functionality in the editor, described in the user manual here. To use this method, you must first add the GameObjects to an existing Prefab instance.

An added GameObject is a type of Instance Override. The act of applying added GameObjects to the Prefab means they will become part of the Prefab Asset, and will no longer be overrides on the Prefab instance.

When applying added GameObjects to a Prefab Asset, you must supply the asset path as a parameter. This is because there are some situations where there are multiple possible targets to apply the change to. For example, if added GameObjects have been added to a GameObject that is part of a nested Prefab, you may have the choice of applying the changes to the inner nested Prefab Asset, or to the outer root Prefab Asset. Therefore, by specifying the asset path, you make it clear to Unity which Prefab Asset the change must be applied to.

用户手册中介绍了有关选择应用目标的更多信息。

See Also: PrefabUtility.ApplyAddedGameObject, PrefabUtility.ApplyAddedComponent, PrefabUtility.ApplyObjectOverride, PrefabUtility.ApplyPropertyOverride, PrefabUtility.ApplyRemovedComponent, PrefabUtility.ApplyPrefabInstance.