When exporting a game to a binary format (.exe, etc), the manual says:
> To include an extra file in the output folders and archives, use the -E switch:
> > EXPORT -E README.TXT MYGAME.BIN
I tried this (pico8 game.p8 -export "-f game.bin -e examples/ -e samples/"
) but it doesn't include those subfolders. If I -e examples/kick.pcm
, then that file is included, but it's included at the top level, and not in an "examples" subfolder
Am I doing this wrong somehow? I assume this just isn't supported (yet? fingers crossed)
The -export
OS command-line option does not seem to have feature parity with the EXPORT
pico8 command-prompt option. Specifically sub-options like -t
or -e
are not supported, or the way to specify them is not documented.
[Please log in to post a comment]