Blender fbx import from ascii format

For some reason Blender import doesn’t support FBX models that are serialized to text. As a workaround the model can be changed to binary FBX model and imported to Blender. At least I am able to use Autodesk FBX 2013.3 Converter even I don’t have any other Autodesk software installed. Other option that might work … Read more

Running python script in Blender

You can also execute the following code in the python console to execute an external script without opening it up in the text editor: filename = “/full/path/to/myscript.py” exec(compile(open(filename).read(), filename, ‘exec’)) The above code comes from the following link: Blender – Tips and Tricks