Merge branch 'blender-v4.3-release'

This commit is contained in:
Pratik Borhade
2024-10-09 16:55:16 +05:30
2 changed files with 6 additions and 5 deletions

View File

@@ -1014,6 +1014,7 @@ def km_user_interface(_params):
("ui.view_start_filter", {"type": 'F', "value": 'PRESS', "ctrl": True}, None),
("ui.view_scroll", {"type": 'WHEELUPMOUSE', "value": 'ANY'}, None),
("ui.view_scroll", {"type": 'WHEELDOWNMOUSE', "value": 'ANY'}, None),
("ui.view_scroll", {"type": 'TRACKPADPAN', "value": 'ANY'}, None),
])
return keymap
@@ -4346,10 +4347,6 @@ def km_paint_curve(params):
("transform.translate", {"type": params.select_mouse, "value": 'CLICK_DRAG'}, None),
("transform.rotate", {"type": 'R', "value": 'PRESS'}, None),
("transform.resize", {"type": 'S', "value": 'PRESS'}, None),
op_asset_shelf_popup(
"VIEW3D_AST_brush_sculpt_curves",
{"type": 'SPACE', "value": 'PRESS', "shift": True}
),
])
return keymap
@@ -5016,6 +5013,10 @@ def km_sculpt_curves(params):
*_template_items_select_actions(params, "curves.select_all"),
("sculpt_curves.min_distance_edit", {"type": 'R', "value": 'PRESS'}, {}),
("sculpt_curves.select_grow", {"type": 'A', "value": 'PRESS', "shift": True}, {}),
op_asset_shelf_popup(
"VIEW3D_AST_brush_sculpt_curves",
{"type": 'SPACE', "value": 'PRESS', "shift": True}
),
])
return keymap

View File

@@ -2589,7 +2589,6 @@ def km_paint_curve(params):
("transform.translate", {"type": 'LEFTMOUSE', "value": 'CLICK_DRAG'}, None),
("transform.rotate", {"type": 'E', "value": 'PRESS'}, None),
("transform.resize", {"type": 'R', "value": 'PRESS'}, None),
op_asset_shelf_popup("VIEW3D_AST_brush_sculpt_curves", {"type": 'B', "value": 'PRESS'}),
])
return keymap
@@ -3409,6 +3408,7 @@ def km_sculpt_curves(params):
("sculpt_curves.min_distance_edit", {"type": 'D', "value": 'PRESS', "ctrl": True}, {}),
# Tools
op_tool_cycle("builtin.annotate", {"type": 'D', "value": 'PRESS'}),
op_asset_shelf_popup("VIEW3D_AST_brush_sculpt_curves", {"type": 'B', "value": 'PRESS'}),
])
return keymap