Is it possible to edit SkeletalMeshLODSettings DataAssets with Python? I am ultimately trying to edit the bone list. But even setting simple float properties in the LODGroups seems to have no effect.
`lod_groups = lod_settings.get_editor_property(“lod_groups”)
This works and empties the array
lod_groups.clear()
These do nothing
lod_groups[1].set_editor_property(“lod_hysteresis”, 0.5)
lod_settings.set_editor_property(“lod_groups”, lod_groups)`