Node Displayable Widgets
This section will guide you on how to create your own node content widget.
Last updated
This section will guide you on how to create your own node content widget.
Last updated
Right-click in the Content Drawer.
Navigate to User Interface.
Select Widget Blueprint.
Search for DisplayableWidgetBase widget class and select it.
In this demonstration, we will create a custom widget that includes a text box for displaying and editing a string variable.
Create and open a Displayable Widget.
Add a text box to the widget.
Switch to the Graph Editing Mode.
Implement the loading logic to update the value upon initial display. Task variables are loaded before the displayable widgets are shown, so you can handle this in the Construct event.
Implement the text change logic to update the task variable and then save the node properties.
See to display your content widget.