Can someone help me understand why this is not removing my item?
I have no issues when I add items to my member arrays …
but am having issues removing them once deactivated.
Can someone help me understand why this is not removing my item?
I have no issues when I add items to my member arrays …
but am having issues removing them once deactivated.
Well, seems if I remove item after I set members solves my issue.
What sort of structure is Menu?
It is because the loop returns a copy of your struct. Yuo can make a copy of the UE4 for each loop that returns a reference so any edits made should be made to the struct in the array not the copy that it lets you look at.
That’s why it works after you set your members, that node expects and returns a reference.