Hi Alex, you can convert that into using DXF format by editing one line of the script in a text editor. Look for the line that adds the file extension and modify that.
On one version it's on line number 52 and looks like this:
code:
var filename = g_dirname + name + '.fbx';
Change the file extension from '.fbx' to be '.dxf' instead like this:
code:
var filename = g_dirname + name + '.dxf';
If you can't get that to work please post the particular script you're using (there are a couple versions out there I think) and I'll take a look at what's wrong.
> Would it be possible to have a super tool which allow you to pick the format of export like manual method.
That could be possible but it would be good to know if the current script is doing the job that you need.
- Michael
|