I need to get all component (images) names of a widget as an array, so I can check them and set their visibility, one by one dynamically.
I already set the components (images) as “variable” and I can access them as manually and single components using the widget object-reference where the images are embeded.
But I can’t figure out how to get them all as a list from the widget-object-reference?
If your images are in a specific container in your widget class (like a vertical box or something), you can make that container a variable and then you can drag it into your UI BP graph and use the node “Get all children.” This will get you an array of every child. You can then for each loop through that array and cast to image to get all of your images.