Hi Nuverian. I am now making a save system for my game. I can save and load blackboards, but I don’t know how to delete saved data? can you help me please?
Are you using the Save and Load methods of blackboards which uses Unity PlayerPrefs for saving and loading with a key?
If so, an entry from Unity PlayerPrefs can be deleted using the Unity PlayerPrefs.DeleteKey method.
If you do not provide a custom “key” name for when saving, then the “key” will be the blackboards name property; thus you can for example call PlayerPrefs.DeleteKey(blackboard.name);