path | 差异工具路径。 |
twoWayDiff | 双向差异命令行。 |
threeWayDiff | 三向差异命令行。 |
mergeCommand | 合并命令行。 |
forceEnableCustomTool | 将自定义工具设置为当前活动的版本控制差异/合并工具。 |
设置自定义差异工具设置。
using UnityEditor; using UnityEngine;
public class EditorScript : MonoBehaviour { [MenuItem("SetCustomDiffTool/DiffMerge")] public static void ExampleSetCustomDiffTool() { string path = "/Applications/DiffMerge.app/Contents/MacOS/DiffMerge"; string twoWayDiffCommandLine = "-t1 #LTITLE -t2 #RTITLE #LEFT #RIGHT"; string threeWayDiffCommandLine = "-t1 #LTITLE -t2 #ATITLE -t3 #RTITLE -ro2 #LEFT #ANCESTOR #RIGHT"; string mergeArguments = "-m -t1 #LTITLE -t2 #ATITLE -t3 #RTITLE -r #OUTPUT #LEFT #ANCESTOR #RIGHT";
EditorUtility.SetCustomDiffTool(path, twoWayDiffCommandLine, threeWayDiffCommandLine, mergeArguments); } }
有关差异工具的更多信息,请参阅 版本控制差异/合并。