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 5,046 Lines • ▼ Show 20 Lines | items.extend([ | ||||
| ("sculpt.brush_stroke", {"type": 'LEFTMOUSE', "value": 'PRESS'}, | ("sculpt.brush_stroke", {"type": 'LEFTMOUSE', "value": 'PRESS'}, | ||||
| {"properties": [("mode", 'NORMAL')]}), | {"properties": [("mode", 'NORMAL')]}), | ||||
| ("sculpt.brush_stroke", {"type": 'LEFTMOUSE', "value": 'PRESS', "ctrl": True}, | ("sculpt.brush_stroke", {"type": 'LEFTMOUSE', "value": 'PRESS', "ctrl": True}, | ||||
| {"properties": [("mode", 'INVERT')]}), | {"properties": [("mode", 'INVERT')]}), | ||||
| ("sculpt.brush_stroke", {"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True}, | ("sculpt.brush_stroke", {"type": 'LEFTMOUSE', "value": 'PRESS', "shift": True}, | ||||
| {"properties": [("mode", 'SMOOTH')]}), | {"properties": [("mode", 'SMOOTH')]}), | ||||
| # Expand | # Expand | ||||
| ("sculpt.expand", {"type": 'A', "value": 'PRESS', "shift": True}, | ("sculpt.expand", {"type": 'A', "value": 'PRESS', "shift": True}, | ||||
| {"properties": [("target", "MASK"), ("falloff_type", "GEODESIC"), ("invert", True)]}), | {"properties": [ | ||||
| ("target", "MASK"), | |||||
| ("falloff_type", "GEODESIC"), | |||||
| ("invert", True), | |||||
| ("use_mask_preserve" , True)]}), | |||||
| ("sculpt.expand", {"type": 'A', "value": 'PRESS', "shift": True, "alt": True}, | ("sculpt.expand", {"type": 'A', "value": 'PRESS', "shift": True, "alt": True}, | ||||
| {"properties": [("target", "MASK"), ("falloff_type", "NORMALS"), ("invert", False)]}), | {"properties": [ | ||||
| ("target", "MASK"), | |||||
| ("falloff_type", "NORMALS"), | |||||
| ("invert", False), | |||||
| ("use_mask_preserve" , True)]}), | |||||
| ("sculpt.expand", {"type": 'W', "value": 'PRESS', "shift": True}, | ("sculpt.expand", {"type": 'W', "value": 'PRESS', "shift": True}, | ||||
| {"properties": [ | {"properties": [ | ||||
| ("target", "FACE_SETS"), | ("target", "FACE_SETS"), | ||||
| ("falloff_type", "GEODESIC"), | ("falloff_type", "GEODESIC"), | ||||
| ("invert", False), | ("invert", False), | ||||
| ("use_mask_preserve" , False), | |||||
| ("use_modify_active", False)]}), | ("use_modify_active", False)]}), | ||||
| ("sculpt.expand", {"type": 'W', "value": 'PRESS', "shift": True, "alt": True}, | ("sculpt.expand", {"type": 'W', "value": 'PRESS', "shift": True, "alt": True}, | ||||
| {"properties": [ | {"properties": [ | ||||
| ("target", "FACE_SETS"), | ("target", "FACE_SETS"), | ||||
| ("falloff_type", "BOUNDARY_FACE_SET"), | ("falloff_type", "BOUNDARY_FACE_SET"), | ||||
| ("invert", False), | ("invert", False), | ||||
| ("use_mask_preserve" , False), | |||||
| ("use_modify_active", True), | ("use_modify_active", True), | ||||
| ]}), | ]}), | ||||
| # Partial Visibility Show/hide | # Partial Visibility Show/hide | ||||
| # Match keys from: `_template_items_hide_reveal_actions`, cannot use because arguments aren't compatible. | # Match keys from: `_template_items_hide_reveal_actions`, cannot use because arguments aren't compatible. | ||||
| ("sculpt.face_set_change_visibility", {"type": 'H', "value": 'PRESS'}, | ("sculpt.face_set_change_visibility", {"type": 'H', "value": 'PRESS'}, | ||||
| {"properties": [("mode", 'TOGGLE')]}), | {"properties": [("mode", 'TOGGLE')]}), | ||||
| ("sculpt.face_set_change_visibility", {"type": 'H', "value": 'PRESS', "shift": True}, | ("sculpt.face_set_change_visibility", {"type": 'H', "value": 'PRESS', "shift": True}, | ||||
| {"properties": [("mode", 'HIDE_ACTIVE')]}), | {"properties": [("mode", 'HIDE_ACTIVE')]}), | ||||
| ▲ Show 20 Lines • Show All 3,150 Lines • Show Last 20 Lines | |||||