Changeable data from Data Table

Hello. Data from Data Table can’t be changed in runtime, but i need it. I try to create logic for adding different boosts and keep the data inside DT. If i make an array or a set it can’t have names to know which element i change. Can i change the data somehow without creating lots of the same structures and making arrays?

Unless things have changed drastically, you either need to use a plugin or get good at C++.

Are there any plugins for it?

2 Likes

Thanks.

1 Like

Another option is to use a Map (Dictionary) to store your data. Every item in the map has a key (for example a string which can be the name of the element you want to update/change).

3 Likes