angus.wood Posted April 13, 2014 Share Posted April 13, 2014 If an object name in an FBX file is something like Base:Stuff:ObjectName then the importer tool will fail the entire file. The issue is that the importer will try to create a directory called "Base:Stuff" and put "ObjectName" in to it. Since Windows paths cannot contain colons this fails. You need to sanitize your inputs before using them to make directories. Link to comment
silent Posted April 14, 2014 Share Posted April 14, 2014 Hi, Thank you for this information! This issue is already exist in our internal bug tracker. Unfortunately, we can't give you any ETA when it will be fixed. We will keep you updated. Sorry for the inconvenience caused. /moved to bug reports/ How to submit a good bug report --- FTP server for test scenes and user uploads: ftp://files.unigine.com user: upload password: 6xYkd6vLYWjpW6SN Link to comment
angus.wood Posted May 12, 2014 Author Share Posted May 12, 2014 Thank you for this information! This issue is already exist in our internal bug tracker. Unfortunately, we can't give you any ETA when it will be fixed. We will keep you updated. Thanks for the update. This is having quite a large effect on our Unigine project, because Autodesk Motion Builder uses colons to separate namespaces so content creation is now very difficult. Can you please update me as soon as you know when there will be an ETA as this is very important to us. Link to comment
unclebob Posted May 16, 2014 Share Posted May 16, 2014 Hello, Angus! Good news, we've managed to fix that issue. Will be available soon, have a good week end! ;) Link to comment
silent Posted May 19, 2014 Share Posted May 19, 2014 Hi Angus, Sorry for the late reply. We managed to fix this issue, so you need to update one file: <SDK>/data/core/editor/plugins/import/autodesk.cpp In attachment you can find pathched autodesk.cpp from March SDK release. If you are using beta April SDK you need to change line 746 in autodesk.cpp to the following one: string name = path + "meshes/" + prefix + re_replace(import.getMeshName(mesh),"[<>:\"/\\|?*]",""); autodesk_march_fix.zip 1 How to submit a good bug report --- FTP server for test scenes and user uploads: ftp://files.unigine.com user: upload password: 6xYkd6vLYWjpW6SN Link to comment
Recommended Posts