Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-10-24FBX: enable import of 7500 (FBX2016) files.Bastien Montagne
Looks like only change here was that binary switch from uint32 to uint64 for some core metadata of the format. At leas, could import some 7500 files here with that mere change. Thanks again @xchip (Raul Aguaviva) for finding the culprit in T49822!
2016-10-24FBX: Fix fbx2json tool for 7500 FBX files (FBX2016).Bastien Montagne
Based on patch from T49822, thanks a bunch for investigation. Change is actually pretty limited - 7500 now uses some uint64 instead of uint32 integers as some root element info (like size etc.), and accordingly raised the 'stop nested data' marker from 13 to 25 NULL bytes. Next step: check if we can make actual importer load FBX2016 files that simply!
2016-09-22Fix T49412: We do not support FBX 7500 and above, at least properly report ↵Bastien Montagne
it to users. Those ... people? at AD changed the whole format on binary level it'd seem, even low-level, binary parsing is broken with those files, nothing else to do but go back to binary hacking/inspection of new files if we want to support them... will let that to someone else, FBX has successfully exhausted my patience since years already, even all the backup emergency reserves I had.
2014-08-04FBX: Add 'fbx2json.py' utils to convert binary FBX files into readable JSon ↵Bastien Montagne
ones. From Campbell's repo.