2011-03-27 21:45:37 +00:00
|
|
|
# Configuration Blender
|
|
|
|
|
import bpy
|
|
|
|
|
|
|
|
|
|
bpy.context.user_preferences.edit.use_drag_immediately = True
|
|
|
|
|
bpy.context.user_preferences.edit.use_insertkey_xyz_to_rgb = False
|
|
|
|
|
bpy.context.user_preferences.inputs.select_mouse = 'LEFT'
|
|
|
|
|
bpy.context.user_preferences.inputs.view_zoom_method = 'DOLLY'
|
|
|
|
|
bpy.context.user_preferences.inputs.view_zoom_axis = 'HORIZONTAL'
|
|
|
|
|
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 = True
|