Hi All,
I'd like to triangulate the geometry when exporting a fbx from python. I've been searching the documentation for the id for the "triangulate geometry" option, but it looks like there's nothing about it. Also, the fbx exporter has no id like the others. For example the object export is c4d. FORMAT_OBJ2EXPORT while the fbx export is 1026370
Here's a piece of my script
container = c4d.plugins.GetWorldPluginData(1026370)
for id, value in container:
if id == c4d.FBXEXPORT_TRIANGULATE_GEOMETRY: container[id] = 1
...