Hey Guys,
I’d like to change some of the user preferences(like “Rotate Around Selection” or “MipMaps”) via API. I’ve used the “Operator Simple” template and filled the “main” function with this:
def main(context):
prefs = bpy.types.UserPreferencesSystem
prefs.use_mipmaps = True
I don’t get any errors but also any satisfying results -> MipMaps remains unchecked in the user preferencies tab “System”.
Any ideas what I’m doing wrong?