Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/presets/keyconfig/keymap_data/blender_default.py
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
| Show First 20 Lines • Show All 4,444 Lines • ▼ Show 20 Lines | items.extend([ | ||||
| {"properties": [("sculpt_tool", 'MASK'), ("toggle", True), ("create_missing", True)]}), | {"properties": [("sculpt_tool", 'MASK'), ("toggle", True), ("create_missing", True)]}), | ||||
| # Menus | # Menus | ||||
| ("wm.context_menu_enum", {"type": 'E', "value": 'PRESS'}, | ("wm.context_menu_enum", {"type": 'E', "value": 'PRESS'}, | ||||
| {"properties": [("data_path", 'tool_settings.sculpt.brush.stroke_method')]}), | {"properties": [("data_path", 'tool_settings.sculpt.brush.stroke_method')]}), | ||||
| ("wm.context_toggle", {"type": 'S', "value": 'PRESS', "shift": True}, | ("wm.context_toggle", {"type": 'S', "value": 'PRESS', "shift": True}, | ||||
| {"properties": [("data_path", 'tool_settings.sculpt.brush.use_smooth_stroke')]}), | {"properties": [("data_path", 'tool_settings.sculpt.brush.use_smooth_stroke')]}), | ||||
| op_menu("VIEW3D_MT_angle_control", {"type": 'R', "value": 'PRESS'}), | op_menu("VIEW3D_MT_angle_control", {"type": 'R', "value": 'PRESS'}), | ||||
| op_menu_pie("VIEW3D_MT_sculpt_mask_edit_pie", {"type": 'A', "value": 'PRESS'}), | op_menu_pie("VIEW3D_MT_sculpt_mask_edit_pie", {"type": 'A', "value": 'PRESS'}), | ||||
| op_menu_pie("VIEW3D_MT_sculpt_automasking_pie", {"type": 'A', "alt": True,"value": 'PRESS'}), | |||||
| op_menu_pie("VIEW3D_MT_sculpt_face_sets_edit_pie", {"type": 'W', "value": 'PRESS'}), | op_menu_pie("VIEW3D_MT_sculpt_face_sets_edit_pie", {"type": 'W', "value": 'PRESS'}), | ||||
| *_template_items_context_panel("VIEW3D_PT_sculpt_context_menu", params.context_menu_event), | *_template_items_context_panel("VIEW3D_PT_sculpt_context_menu", params.context_menu_event), | ||||
| ]) | ]) | ||||
| if params.legacy: | if params.legacy: | ||||
| items.extend(_template_items_legacy_tools_from_numbers()) | items.extend(_template_items_legacy_tools_from_numbers()) | ||||
| return keymap | return keymap | ||||
| ▲ Show 20 Lines • Show All 2,627 Lines • Show Last 20 Lines | |||||