Function Picker UE5.3 Release
What's New:
- Updated to Unreal Engine 5.3.
- Implemented Data Validation to verify bound functions.
How It Works:
The sample project demonstrates the Data Validation feature. It will display an error in the Message Log if a bound function is improperly set or no longer exists (e.g., if it has been renamed or removed).
To enable this validation in your own code, simply override IsDataValid(Context)
in any UObject-derived class and call FFunctionPicker::IsDataValid(Context)
. For a practical example, refer to the code in the Sample Project, where USampleInputAction
now does it.
For another similar example, refer to this commit.
Get Started:
- Download the sample project here.
I hope you find these updates valuable for your Unreal Engine development journey.