Navigation
API > API/Plugins > API/Plugins/DataflowNodes > API/Plugins/DataflowNodes/Dataflow
References
| Module | DataflowNodes |
| Header | /Engine/Plugins/Experimental/Dataflow/Source/DataflowNodes/Public/Dataflow/DataflowFunctionProperty.h |
| Include | #include "Dataflow/DataflowFunctionProperty.h" |
Syntax
USTRUCT ()
struct FDataflowFunctionProperty
Remarks
Function property for all Dataflow nodes. The structure is also used in DataFlow::FFunctionPropertyCustomization to appear as text and/or image buttons. This helps with the equivalent UCLASS UFUNCTION CallInEditor functionality that is missing from the USTRUCT implementation.
By default the text of the button is the name of the structure property. The tooltip is the property source documentation. Further (but optional) customizations can be achieved by using the following Meta tags where declaring the property: DisplayName ButtonImage
Specifying an empty DisplayName string will only display the icon and no text.
For example:
FDataflowFunctionProperty ReimportAssetTextOnly;
FDataflowFunctionProperty ReimportAssetTextAndIcon;
FDataflowFunctionProperty ReimportAssetIconOnly;
FDataflowFunctionProperty ReimportAssetOverriddenText;
FDataflowFunctionProperty ReimportAssetOverriddenTextAndIcon;
Constructors
| Type | Name | Description | |
|---|---|---|---|
FDataflowFunctionProperty
(
FDelegate&& InDelegate |
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | Execute
(
UE::Dataflow::FContext& Context |
Typedefs
| Name | Description |
|---|---|
| FDelegate |