[QUOTE=sz200;29494]line 1: Syntax Error: Use FBXExportBakeComplexAnimation -v true|false #[/QUOTE]
Check the value of your bakeAnim variable. If it’s a bool, you’ll want to convert it to a lowercase version. The FBX requires something like: FBXExportBakeComplexAnimation -v true; with the bool being lowercase and python, with something like str(True) will output ‘True’.
Thanks, I didn’t realize that it was so nitpicky on wanting lowercase.
[QUOTE=Sariel;29495]Check the value of your bakeAnim variable. If it’s a bool, you’ll want to convert it to a lowercase version. The FBX requires something like: FBXExportBakeComplexAnimation -v true; with the bool being lowercase and python, with something like str(True) will output ‘True’.[/QUOTE]