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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam Reynish <billrey@me.com>2019-04-10 17:10:07 +0300
committerWilliam Reynish <billrey@me.com>2019-04-10 17:10:07 +0300
commitb9e6f9b9c511e35727a3b6f94f09495e999da219 (patch)
tree0b0e2142a91bea823fdf780602dfa146fcb82020 /release/scripts
parentb932635bfd0260019157de796556cd1f7a7c762b (diff)
Industry Compat Keymap: Add Sculpt Mode keys
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py22
1 files changed, 13 insertions, 9 deletions
diff --git a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
index db1573f5105..b566bf8c942 100644
--- a/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
+++ b/release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
@@ -3026,8 +3026,6 @@ def km_sculpt(params):
("brush.stencil_control", {"type": 'RIGHTMOUSE', "value": 'PRESS', "ctrl": True, "alt": True},
{"properties": [("mode", 'ROTATION'), ("texmode", 'SECONDARY')]}),
# Tools
- ("paint.brush_select", {"type": 'X', "value": 'PRESS'},
- {"properties": [("sculpt_tool", 'DRAW')]}),
("paint.brush_select", {"type": 'S', "value": 'PRESS'},
{"properties": [("sculpt_tool", 'SMOOTH')]}),
("paint.brush_select", {"type": 'P', "value": 'PRESS'},
@@ -3044,16 +3042,22 @@ def km_sculpt(params):
{"properties": [("sculpt_tool", 'CLAY')]}),
("paint.brush_select", {"type": 'C', "value": 'PRESS', "shift": True},
{"properties": [("sculpt_tool", 'CREASE')]}),
- ("paint.brush_select", {"type": 'K', "value": 'PRESS'},
- {"properties": [("sculpt_tool", 'SNAKE_HOOK')]}),
("paint.brush_select", {"type": 'M', "value": 'PRESS'},
{"properties": [("sculpt_tool", 'MASK'), ("toggle", True), ("create_missing", True)]}),
+ ("paint.brush_select", {"type": 'R', "value": 'PRESS'},
+ {"properties": [("sculpt_tool", 'ROTATE')]}),
+ ("paint.brush_select", {"type": 'N', "value": 'PRESS'},
+ {"properties": [("sculpt_tool", 'NUDGE')]}),
+ ("paint.brush_select", {"type": 'T', "value": 'PRESS'},
+ {"properties": [("sculpt_tool", 'THUMB')]}),
+ ("paint.brush_select", {"type": 'H', "value": 'PRESS'},
+ {"properties": [("sculpt_tool", 'SNAKE_HOOK')]}),
+ ("paint.brush_select", {"type": 'B', "value": 'PRESS'},
+ {"properties": [("sculpt_tool", 'BLOB')]}),
+ ("paint.brush_select", {"type": 'D', "value": 'PRESS'},
+ {"properties": [("sculpt_tool", 'DRAW')]}),
+
# Menus
- ("wm.context_menu_enum", {"type": 'E', "value": 'PRESS'},
- {"properties": [("data_path", 'tool_settings.sculpt.brush.stroke_method')]}),
- ("wm.context_toggle", {"type": 'S', "value": 'PRESS', "shift": True},
- {"properties": [("data_path", 'tool_settings.sculpt.brush.use_smooth_stroke')]}),
- op_menu("VIEW3D_MT_angle_control", {"type": 'R', "value": 'PRESS'}),
op_panel("VIEW3D_PT_sculpt_context_menu", {"type": 'RIGHTMOUSE', "value": 'PRESS'}),
op_panel("VIEW3D_PT_sculpt_context_menu", {"type": 'LEFTMOUSE', "value": 'PRESS', "ctrl": True}),
])