I am creating a quiz game. The trivia used for each game is stored in a JSON file in my StreamingAssets folder.
Path example: Assets/StreamingAssets/Games/MusicGame1.json
There are multiple games available to play and I want the user to be able to select which JSON file to use on the start menu. Is there a way that they can view all of these JSON files and select the one they want to use?
My current solution is to use an input field to type in the game name, this gets plugged into the string for the path such aspathString = "StreamingAssets/Games/" + value + ".json"
This works fine if you know the game you want to use and the path, but not super user friendly.
Thanks for the help!
Ed