#
How Get Output And Apply Changes ?
Output : Almost every screen have a OnItemClicked
, OnContentClicked
,OnChapterClicked
Use this output events and apply your change with a custom blueprint
#
Example :
- Applying shopping need to add a
BP_CustomShop
. - On
WBPC_ShopSelector
add a variable by typeBP_CustomShop
end initialize onBeginPlay
(GetActorOfClass). - In
BP_CustomShop
add a custom logic and name itOnItemPurchased
. - In
WBPC_ShopSelector
findOnItemClicked
and can get some item value in forBP_CustomShop
. - In
WBPC_ShopSelector
findbtn_purchase
button search the OnClicked event and call your custom eventOnItemPurchased
.