I want to use this array called “Disobeyed” and place its content in one of my widgets. My problem is, I can’t accessed it in the event graph of my widget.
You can not get reference to Level Blueprint so you need to do it backwards. Find the place where this widget is added to viewport and send reference of the widget to the Level BP, for example via dispatcher.
I solved my problem by exposing variables from widgets and passing it through casting. Thanks by the way.
Can you please show how you solved it?