Navigation
API > API/Editor > API/Editor/UnrealEd > API/Editor/UnrealEd/UDiffAssetsCommandlet
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static bool ExportFilesToTextAndDiff
(
const FString& Params |
The meat of the commandlet, this can be called from the editor Format of commandline is as follow File1.uasset File2.uasset -DiffCmd="C:/Program Files/Araxis/Araxis Merge/AraxisP4Diff.exe {1} {2}" | Commandlets/DiffAssetsCommandlet.h | |
static bool ExportFilesToTextAndDiff
(
const FString& Filename1, |
Runs an external diff utility | Commandlets/DiffAssetsCommandlet.h |
ExportFilesToTextAndDiff(const FString &)
Description
The meat of the commandlet, this can be called from the editor Format of commandline is as follow File1.uasset File2.uasset -DiffCmd="C:/Program Files/Araxis/Araxis Merge/AraxisP4Diff.exe {1} {2}"
| Name | ExportFilesToTextAndDiff |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Classes/Commandlets/DiffAssetsCommandlet.h |
| Include Path | #include "Commandlets/DiffAssetsCommandlet.h" |
| Source | /Engine/Source/Editor/UnrealEd/Private/Commandlets/DiffAssetsCommandlet.cpp |
static bool ExportFilesToTextAndDiff
(
const FString & Params
)
true if success
Parameters
| Name | Remarks |
|---|---|
| Params | Command line |
ExportFilesToTextAndDiff(const FString &, const FString &, const FString &)
Description
Runs an external diff utility
| Name | ExportFilesToTextAndDiff |
| Type | function |
| Header File | /Engine/Source/Editor/UnrealEd/Classes/Commandlets/DiffAssetsCommandlet.h |
| Include Path | #include "Commandlets/DiffAssetsCommandlet.h" |
| Source | /Engine/Source/Editor/UnrealEd/Private/Commandlets/DiffAssetsCommandlet.cpp |
static bool ExportFilesToTextAndDiff
(
const FString & Filename1,
const FString & Filename2,
const FString & DiffCommand
)
true if success
Parameters
| Name | Remarks |
|---|---|
| Filename1 | First filename |
| Filename1 | Second filename |
| DiffCommand | Diff command, with {1} {2} in it....for example: C:/Program Files/Araxis/Araxis Merge/AraxisP4Diff.exe {1} {2} |