My users want to be able to customize the folder that their saves go in.
I've been handling file saving/loading manually so far, but I'd like to use the bevy Asset Server if possible.
From what I've been reading I probably should register a custom AssetSource that is set to the root directory (users are on Windows, so usually "C") of the user's file directory, and then I can just specify the full path to each asset when I load/save.
However I'm not sure how to do that... can't find any examples and Discord search doesn't yield anything either. Any help would be greatly appreciated!