Code: Select all
global proc exportScale()
<snip>
case 1:
float $sSize = 1000;
break;
case 2:
float $sSize = 100;
break;
This should read:
Code: Select all
case 1:
float $sSize = 0.01;
break;
case 2:
float $sSize = 0.01;
break;
Thus, a 1x1x1 centimeter box created in Maya would translate to a 0.01x0.01x0.01 meter box in Octane, not to a 100x100x100 meter monstrosity.