carlosedubarreto / b3d_mocap_import

addon for blender to import mocap data from tools like easymocap, frankmocap and Vibe
106 stars 14 forks source link

os.sep instead of '\\' for portability in path string construction #8

Closed k30n1 closed 3 years ago

k30n1 commented 3 years ago

Minor portability bug: In order to make the plugin work in Blender on Linux, I had to replace backslash filename separators with os.sep, which should resolve to backslash in Windows and forward slash in other OSes. This was limited to the load_mocap.py module, just replace '\\' with os.sep in 4 places.

Thanks for all the work you've put into this add-on!

carlosedubarreto commented 3 years ago

Wow, thanks for the help on the linux fix. I'll keep the issu open while the file is not fixed and tested.

carlosedubarreto commented 3 years ago

Update done, thanks a lot @k30n1