Hello, I’ve these files and directories:
/
main.py
MyModule/
__init__.py
MyModule.py
I’d like to obtain a p3d file containing the file main.py and a separate package for the module MyModule. But, when I submit the command panda3d packp3d_dev.p3d -o myPack.p3d, this includes inside the p3d file the module MyModule; indeed if I submit multify -t -f myPack.p3d I obtain:
MyModule/MyModule.pyo
MyModule/__init__.pyo
main.pyo
p3d_info.xml
This is the expected behaviour (packp3d should import the requested packages), but I’d like to divide the p3d pack from the module, providing a separate module. How can I exclude that module from the p3d file? Very thanks!