Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UEdGraphNode
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual void DiffProperties
(
UClass* StructA, |
Finds the difference in properties of node instance, for subobjects | EdGraph/EdGraphNode.h | |
virtual void DiffProperties
(
UStruct* StructA, |
Finds the difference in properties of node instance, for arbitrary UStructs | EdGraph/EdGraphNode.h |
DiffProperties(UClass , UClass , UObject , UObject , FDiffResults &, FDiffSingleResult &)
Description
Finds the difference in properties of node instance, for subobjects
| Name | DiffProperties |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/EdGraph/EdGraphNode.h |
| Include Path | #include "EdGraph/EdGraphNode.h" |
| Source | /Engine/Source/Runtime/Engine/Private/EdGraph/EdGraphNode.cpp |
virtual void DiffProperties
(
UClass * StructA,
UClass * StructB,
UObject * DataA,
UObject * DataB,
FDiffResults & Results,
FDiffSingleResult & Diff
) const
Parameters
| Name | Remarks |
|---|---|
| StructA | The struct of the class we are looking at LHS |
| StructB | The struct of the class we are looking at RHS |
| DataA | The raw data for the UObject we are comparing LHS |
| DataB | The raw data for the UObject we are comparing RHS |
| Results | The Results where differences are stored |
| Diff | The single result with default parameters setup |
DiffProperties(UStruct , UStruct , uint8 , uint8 , FDiffResults &, FDiffSingleResult &)
Description
Finds the difference in properties of node instance, for arbitrary UStructs
| Name | DiffProperties |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/EdGraph/EdGraphNode.h |
| Include Path | #include "EdGraph/EdGraphNode.h" |
| Source | /Engine/Source/Runtime/Engine/Private/EdGraph/EdGraphNode.cpp |
virtual void DiffProperties
(
UStruct * StructA,
UStruct * StructB,
uint8 * DataA,
uint8 * DataB,
FDiffResults & Results,
FDiffSingleResult & Diff
) const
Parameters
| Name | Remarks |
|---|---|
| StructA | The struct we are looking at LHS |
| StructB | The struct we are looking at RHS |
| DataA | The raw data we are comparing LHS |
| DataB | The raw data we are comparing RHS |
| Results | The Results where differences are stored |
| Diff | The single result with default parameters setup |