Notifications
Clear all

[Closed] Unique variables

I’ll definitely look into that. It’s -super- simple data I’m storing for a simple animation management script. The last bit of it should export each chunk of timeline using the stored variables… but I’m having a hell of a time figuring out yet another basic function.

Using the fbx exporter settings, then exporting the file. Can’t seem to figure out how to get the fileExport line to use the settings from the fbx exporter lines. I -have- learned that it’s not as simple as :

	   pluginManager.loadClass FBXEXP
				fbxExporterSetParam 	"Cameras" true
				fbxExporterSetParam	"Lights" false 
				fbxExporterSetParam 	"GeomAsBone" true 
				fbxExporterSetParam 	"BakeAnimation" true 
				fbxExporterSetParam 	"UpAxis" "Y"
				exportFile myFile.fbx #noprompt

Can’t find much to clarify :S. I promise that’s the last stupid question on this project


FbxExporterSetParam "Cameras" false
exportFile "c:\
ocameras.fbx" #noprompt
FbxExporterSetParam "Cameras" true
exportFile "c:\\cameras.fbx" #noprompt

seems to work for me – you shouldn’t have to use the pluginManager; the plugin should be loaded already in a default max installation.

Page 2 / 2