Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


Merge(AssetList)

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.
Read time 1 minuteLast updated 12 days ago

Definition

public static Task Merge(AssetList assets)

Parameters

assets

The list of conflicting assets to be merged.

Returns

Type

Description

Task

Remarks

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.

Examples

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(); }}