Where 'pyd' file goes?

Hi! Following some tutorials, I generated pyd file from Visual Studio, which wraps around my C++ code. But how to properly link it with my existing python Panda3D project? So that later I could redistribute game properly with p3d and that pyd file would go along with everything?

In Python, you can import .pyd files by name, so a file named _something.pyd would be imported like “import _something”. You can use ppackage to include it into a package or a .p3d file.