Expose more function to blueprints

This commit is contained in:
Steve Streeting 2020-10-27 14:05:36 +00:00
parent d0bbcc6c69
commit 532ab9bc79

View File

@ -29,18 +29,21 @@ public:
* @brief Set the current focus to the initial focus widget
* @return Whether the focus was successfully set
*/
UFUNCTION(BlueprintCallable)
bool SetFocusToInitialWidget() const;
/**
* @brief Try to restore focus to the previously focussed child
* @return Whether the focus was successfully set
*/
UFUNCTION(BlueprintCallable)
bool RestorePreviousFocus() const;
/**
* @brief Try to save the currently focussed child as something that can be restored later.
* @return Whether focus was saved
*/
UFUNCTION(BlueprintCallable)
bool SavePreviousFocus();