How to save bought items and show them on my inventory ?
Hello everyone. (TL;DR, go to "Sum =>" )
Here's what I want. I have a store in my game, and some new clothes to buy. And I also have an inventory, that can only show the items available in the store. For example, in the shop I have 5 clothes, so my inventory can have only that 5 items. It's like the store, but will display only the bought items.
The thing is I don't know a good way to store that information.
I'm saving trivial info in PlayerPrefabs, and some important things I serialize, just like the Live Training about persistent data.
Sum =>
Buying items at the store:
1. I don't want to use a lot of bools.
2. I want to buy the item, and display it on the inventory and disable it from the store.
3. I need to know if the item was bought
4. It has to be doable even if I have 1.000 items. (Just to check if I'm doing right)
Thanks a lot for the time spent with this.