-
-
Notifications
You must be signed in to change notification settings - Fork 220
Description
Imagine I want to make a game called my_awesome_game.
Currenly if I have a directory called my_awesome_game for my game with an ldtk project also called my_awesome_game both the "Save levels to separate files" and "Export as PNG" options produce a directory structure like my_awesome_game/my_awesome_game.
If I now want to change it so all the files are instead generated in an assets folder I'd have to rename my ldtk project to assets (which seems kind of hacky) or I need to move the files after they have been saved (which also seems like a bad idea especially the level files since they are referenced in the project file)
I think the ability to either
- pick the subdir the levels and pngs are written to
- or even being able to pick separate dirs for both
would be really useful
that way I could still have my ldtk project name being my games name while also generating all those files in more fitting directories to be used later (for example my_awesome_game/assets/textures for the pngs and my_awesome_game/assets/levels for the levels)