FBX Import Options String Value?

Hi Guys

Happy new year!

I have a question regarding how Rhino remembers the settings that I have checked? Anyone knows where it saves the options so I can gain access to the correct string values?

Reason being I am looking for the correct string to enable or disable Map FBX Y to Rhino Z which is to be hardcoded as an import option in Grasshopper (Pancake). Previously, I tried solidworks file (MapSwYtoRhinoZ=No) and it works. But now it doesn’t work for FBX neither this (MapFbxYtoRhinoZ=No) nor (RotateYtoZ=No).

Hope somebody can help on this :slight_smile:

Thanks

Pancake uses _Y to flip the setting.

 protected override void SolveInstance(IGH_DataAccess DA)
 {
     var extraoptions = "";

     var version = "";
     var sNURBS = false;
     var sPhong = true;
     var sRemap = false;
     
     DA.GetData(0, ref version);
     DA.GetData(1, ref sNURBS);
     DA.GetData(2, ref sPhong);
     DA.GetData(3, ref sRemap);

     if (version != "")
         extraoptions += $" _t {version}";

     if (sNURBS)
         extraoptions += " _E";

     if (!sPhong)
         extraoptions += " _X";

     if (sRemap)
         extraoptions += " _Y";

     DA.SetData(0, extraoptions.Trim());
 }