This repository contains an example implementation of the File Explorer to get the user to select any arbitrary file(s) from their system. I tried to make integrating the File Explorer as easy as possible :D
- Copy and paste the code in
src/Conditions/FileExplorer.asto your script. - Add FILE_EXPLORER_BASE_RENDERER() to your main Render pipeline.
- Call FileExplorer::fe_Start() to open the file explorer, (see example in
src/Main.as) - Call FileExplorer::fe_GetExplorerById() to get the selected data, (see example in
src/Main.as) - Use the selected data in your script.
(note that the src/Conditions/FileExplorer.as file has a somewhat comprihensive guide on how everything in the file explorer works, as well as how to implement it, I'd recommend looking at that if you're interested.)