Limen Framework 0.1 Help

ULimenChoiceWidget

Overview

ULimenChoiceWidget is a subclass of ULimenWidget designed to manage and display a set of gameplay choices. It provides functionality to set the choice data and handle user selections through delegates.

Properties

Type

Name

Access

Description

FChoiceDelegate

OnChoiceSelected

BlueprintAssignable

A delegate that is called when a choice is selected by the user.

Functions

Return Type

Signature

Description

void

SetChoicesData(const FGameplayChoiceScreenData& ChoiceData)

Sets the choices data for the widget and triggers the ChoiceDataReceived event.

void

MakeChoice(const FGameplayChoiceData& ChoiceData)

Broadcasts the selected choice to the OnChoiceSelected delegate.

Usage & Implementation Notes

  • The SetChoicesData function is used to update the choices displayed by the widget and notify any listeners that the data has been received.

  • The MakeChoice function is responsible for notifying the user interface about a choice selection, which in turn triggers the OnChoiceSelected delegate.

22 May 2026