Navigation
API > API/Plugins > API/Plugins/GameplayCamerasEditor > API/Plugins/GameplayCamerasEditor/Editors
References
| Module | GameplayCamerasEditor |
| Header | /Engine/Plugins/Cameras/GameplayCameras/Source/GameplayCamerasEditor/Public/Editors/SFindInObjectTreeGraph.h |
| Include | #include "Editors/SFindInObjectTreeGraph.h" |
Syntax
struct FFindInObjectTreeGraphResult
Remarks
Structure for a search result inside an object tree graph.
Variables
| Type | Name | Description | |
|---|---|---|---|
| TArray< TSharedPtr< FFindInObjectTreeGraphResult > > | Children | Children results. | |
| FText | CustomText | Custom text for this result. | |
| TWeakPtr< FFindInObjectTreeGraphResult > | Parent | Parent result. | |
| FName | PropertyName | The property name that this result refers to. | |
| TWeakObjectPtr | WeakObject | The object that this result refers to. |
Constructors
| Type | Name | Description | |
|---|---|---|---|
FFindInObjectTreeGraphResult
(
const FText& InCustomText |
Creates a new result with a custom text. | ||
FFindInObjectTreeGraphResult
(
TSharedPtr< FFindInObjectTreeGraphResult >& InParent, |
Creates a new result referring to an object, under a parent result. | ||
FFindInObjectTreeGraphResult
(
TSharedPtr< FFindInObjectTreeGraphResult >& InParent, |
Creates a new result referring to an object's property, under a parent result. |
Functions
| Type | Name | Description | |
|---|---|---|---|
| FText | GetCategory () |
Gets the category for this result. | |
| FText | Gets the comment text for this result. | ||
| TSharedRef< SWidget > | GetIcon () |
Gets the icon for this result. | |
| FText | GetText () |
Gets the display text for this result. | |
| FReply | OnClick
(
TSharedRef< SFindInObjectTreeGraph > FindInObjectTreeGraph |
Go to the graph node, pin, etc. |