Hi!
My game folder has the following structure:
MyGame
–src (main.py and other files)
–assets (all assets)
When using packpanda, it only works if I give this command:
packpanda --dir MyGame/src
This understandably takes only the files from the src folder and leaves the rest, so my game does not run.
If I pass this commad
packpanda --dir MyGame
it complains that it can’t find the main.py file.
Is there a way around this? Or do I have to look into py2exe and the Nullsoft script?