public static VersionControl.Task Merge (VersionControl.AssetList assets);

Parámetros

assetsThe list of conflicting assets to be merged.

Descripción

Initiates a merge task to handle the merging of conflicting Assets. This invokes a merge tool, which you can set in the External Tools section of the Preferences window, on the conflicting Assets. When the merge task finishes, the AssetList only contains the Assets that the tool could merge.

To correctly resolve the resulting AssetList states (and replace the files with the correct, merged version), you must call a subsequent Provider.Resolve task with a ResolveMethod.UseMerged ResolveMethod.

using System.Collections.Generic;
using UnityEditor;
using UnityEditor.VersionControl;
using UnityEngine;

public class EditorScript : MonoBehaviour { [MenuItem("Version Control/Merge")] public static void ExampleMerge() { AssetList assets = new AssetList(); assets.Add(Provider.GetAssetByPath("Assets/ExampleAsset.cs")); Task t1 = Provider.Merge(assets); t1.Wait(); Task t2 = Provider.Resolve(assets, ResolveMethod.UseMerged); t2.Wait(); } }