Particle Edit Mode
================== - Added a Remove Doubles tool, to remove two particles with the same root position.
This commit is contained in:
@@ -2296,9 +2296,9 @@ void special_editmenu(void)
|
||||
return;
|
||||
|
||||
if(G.scene->selectmode & SCE_SELECT_POINT)
|
||||
nr= pupmenu("Specials%t|Rekey%x1|Subdivide%x2|Select First%x3|Select Last%x4");
|
||||
nr= pupmenu("Specials%t|Rekey%x1|Subdivide%x2|Select First%x3|Select Last%x4|Remove Doubles%x5");
|
||||
else
|
||||
nr= pupmenu("Specials%t|Rekey%x1");
|
||||
nr= pupmenu("Specials%t|Rekey%x1|Remove Doubles%x5");
|
||||
|
||||
switch(nr) {
|
||||
case 1:
|
||||
@@ -2315,6 +2315,9 @@ void special_editmenu(void)
|
||||
case 4:
|
||||
PE_select_tip();
|
||||
break;
|
||||
case 5:
|
||||
PE_remove_doubles();
|
||||
break;
|
||||
}
|
||||
|
||||
DAG_object_flush_update(G.scene, G.obedit, OB_RECALC_DATA);
|
||||
|
||||
Reference in New Issue
Block a user