forked from bartvdbraak/blender
13 lines
600 B
Python
13 lines
600 B
Python
|
# Configuration 3dsmax
|
||
|
import bpy
|
||
|
|
||
|
bpy.context.user_preferences.edit.use_drag_immediately = False
|
||
|
bpy.context.user_preferences.edit.use_insertkey_xyz_to_rgb = False
|
||
|
bpy.context.user_preferences.view.use_auto_perspective = True
|
||
|
bpy.context.user_preferences.view.use_quit_dialog = True
|
||
|
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 = 'VERTICAL'
|
||
|
bpy.context.user_preferences.inputs.view_rotate_method = 'TURNTABLE'
|
||
|
bpy.context.user_preferences.inputs.invert_mouse_zoom = False
|