2010-04-14 06:45:22 +00:00
|
|
|
# Configuration Blender
|
|
|
|
import bpy
|
|
|
|
|
2010-08-17 13:14:41 +00:00
|
|
|
bpy.context.user_preferences.view.use_mouse_auto_depth = False
|
|
|
|
bpy.context.user_preferences.view.use_zoom_to_mouse = False
|
|
|
|
bpy.context.user_preferences.view.use_rotate_around_active = False
|
|
|
|
bpy.context.user_preferences.edit.use_drag_immediately = False
|
|
|
|
bpy.context.user_preferences.edit.use_insertkey_xyz_to_rgb = False
|
2010-04-14 06:45:22 +00:00
|
|
|
bpy.context.user_preferences.inputs.select_mouse = 'RIGHT'
|
2010-08-17 13:14:41 +00:00
|
|
|
bpy.context.user_preferences.inputs.view_zoom_method = 'DOLLY'
|
|
|
|
bpy.context.user_preferences.inputs.view_zoom_axis = 'VERTICAL'
|
2011-10-20 00:19:21 +00:00
|
|
|
bpy.context.user_preferences.inputs.view_rotate_method = 'TURNTABLE'
|
2011-04-28 09:52:16 +00:00
|
|
|
bpy.context.user_preferences.inputs.invert_mouse_zoom = False
|