How to modify/edit variables within a Struct Array

I have currently hit a roadblock on trying to modify values of an array struct. I cannot find a method that will directly modify a certain element’s value from the array struct. This will need to be implemented for in game purposes as well since players will be able to modify their skills such as combo length or increase their attack damage, etc. I have provided a layout of what I have and what I am trying to accomplish. I have a concept on making the change however, since I am dealing with an array of structs, I have no idea how to call it so the change can be completed.






(If you need any clarifications, ask away).

1 Like

How to modify/edit variables within a Struct Array

By enduring the royal pain in the a**e that nested struct arrays are.

There is one critical bit in all this - copy vs reference - Diamond vs Circle icon of the pins. But you know this, seeing the use of Set Members in Struct.

I think this is close and should work:

4 Likes