Differential D6797 Diff 22119 release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/presets/keyconfig/keymap_data/industry_compatible_data.py
| Show First 20 Lines • Show All 2,525 Lines • ▼ Show 20 Lines | def km_grease_pencil_stroke_weight_mode(params): | ||||
| ]) | ]) | ||||
| return keymap | return keymap | ||||
| def km_face_mask(params): | def km_face_mask(params): | ||||
| items = [] | items = [] | ||||
| keymap = ( | keymap = ( | ||||
| "Face Mask", | "Paint Face Mask (Weight, Vertex, Texture)", | ||||
| {"space_type": 'EMPTY', "region_type": 'WINDOW'}, | {"space_type": 'EMPTY', "region_type": 'WINDOW'}, | ||||
| {"items": items}, | {"items": items}, | ||||
| ) | ) | ||||
| items.extend([ | items.extend([ | ||||
| ("paint.face_select_all", {"type": 'A', "value": 'PRESS', "ctrl": True}, {"properties": [("action", 'SELECT')]}), | ("paint.face_select_all", {"type": 'A', "value": 'PRESS', "ctrl": True}, {"properties": [("action", 'SELECT')]}), | ||||
| ("paint.face_select_all", {"type": 'A', "value": 'PRESS', "ctrl": True, "shift": True}, {"properties": [("action", 'DESELECT')]}), | ("paint.face_select_all", {"type": 'A', "value": 'PRESS', "ctrl": True, "shift": True}, {"properties": [("action", 'DESELECT')]}), | ||||
| ("paint.face_select_all", {"type": 'I', "value": 'PRESS', "ctrl": True}, {"properties": [("action", 'INVERT')]}), | ("paint.face_select_all", {"type": 'I', "value": 'PRESS', "ctrl": True}, {"properties": [("action", 'INVERT')]}), | ||||
| Show All 10 Lines | def km_face_mask(params): | ||||
| ]) | ]) | ||||
| return keymap | return keymap | ||||
| def km_weight_paint_vertex_selection(params): | def km_weight_paint_vertex_selection(params): | ||||
| items = [] | items = [] | ||||
| keymap = ( | keymap = ( | ||||
| "Weight Paint Vertex Selection", | "Paint Vertex Selection (Weight, Vertex)", | ||||
| {"space_type": 'EMPTY', "region_type": 'WINDOW'}, | {"space_type": 'EMPTY', "region_type": 'WINDOW'}, | ||||
| {"items": items}, | {"items": items}, | ||||
| ) | ) | ||||
| items.extend([ | items.extend([ | ||||
| ("paint.vert_select_all", {"type": 'A', "value": 'PRESS', "ctrl": True}, None), | ("paint.vert_select_all", {"type": 'A', "value": 'PRESS', "ctrl": True}, None), | ||||
| ]) | ]) | ||||
| ▲ Show 20 Lines • Show All 1,199 Lines • Show Last 20 Lines | |||||