If your problem is the path your imputting then just add the 'r' to the string: fbxPath = r"D:\Koń_Święcił_Ćmę_Kłódką\Źrebię_Żrąc.fbx" If you need to have forward slashes just convert it:fbxPath = r"D:\Koń_Święcił_Ćmę_Kłódką\Źrebię_Żrąc.fbx".replace('\\', '/')
Hi, I'm wrting a 3D importer to Toolbag at the moment. My app is passing the path to the FBX and invokes Toolbag with an import script and that path as arguments. It all works fine if the path and name don't contain any special characters.But when I have some polish letter (and I guess any other special characters) it…