Welcome to mirror list, hosted at ThFree Co, Russian Federation.

blender.py « interaction « presets « scripts « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63006b2008d4b3ae53d3991c308a0b4ee09e0182 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Configuration Blender
import bpy

wm = bpy.context.manager
wm.active_keyconfig = wm.keyconfigs['Blender']

bpy.context.user_preferences.view.auto_depth = False
bpy.context.user_preferences.view.zoom_to_mouse = False
bpy.context.user_preferences.view.rotate_around_selection = False
bpy.context.user_preferences.edit.drag_immediately = False
bpy.context.user_preferences.edit.insertkey_xyz_to_rgb = False
bpy.context.user_preferences.inputs.select_mouse = 'RIGHT'
bpy.context.user_preferences.inputs.zoom_style = 'DOLLY'
bpy.context.user_preferences.inputs.zoom_axis = 'VERTICAL'
bpy.context.user_preferences.inputs.view_rotation = 'TRACKBALL'
bpy.context.user_preferences.inputs.invert_zoom_direction = False