forked from bartvdbraak/blender
4512f10db9
- rename define DISABLE_SDL --> WITH_SDL (which was already used in some places) - blenders interation preset was using orbit rather then turntable 3d view preference (different from factory defaults). - tagged some unused rna args.
14 lines
673 B
Python
14 lines
673 B
Python
# Configuration Blender
|
|
import bpy
|
|
|
|
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
|
|
bpy.context.user_preferences.inputs.select_mouse = 'RIGHT'
|
|
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
|