I'm trying to make a system to allow users to create their own characters. But the character properties is saved in a custom resource called "Character". I'm storing all the character resources inside another resource called "CharacterPack" that has a "characters_array: Array[Character]".
My system can add and remove characters from the array, but I'm trying to implement an "edit" system. The problem is I don't know how to take a Character resource from the array, modify it and permanently save the changes in the disk (by saving the CharacterPack). I'm having a hard time finding the right way to replace the "Character" instance with new data instead and save it.
Do I need to remove the original Character from the array, add the edited new character as a replacement, and then overwrite the CharacterPack? Or is there a better way? Thank you in advance!