var displayMode = DisplayModeDescription.GetDisplayMode(DisplayModeDescription.ShadedId);
if (displayMode == null)
{
RhinoApp.WriteLine("No se encontró el modo de visualización 'Shaded'.");
return;
}
displayMode.DisplayAttributes.UseCustomObjectColorBackfaces = false;
displayMode.DisplayAttributes.BackMaterialDiffuseColor = Color.Red;
DisplayModeDescription.UpdateDisplayMode(displayMode);
I am working on this now jand, yes, you found oine thing I didn’t implement!
I am adding a BackIsCustom property which, when set in conjunction with UseBackmaterial, will turn that option on. I am going to doubke check this option in the process.