Particle Edit Mode

==================

- Added a Remove Doubles tool, to remove two particles with the
  same root position.
This commit is contained in:
2007-12-20 17:04:10 +00:00
parent 0f2b2e3c60
commit 26b0261a53
4 changed files with 88 additions and 2 deletions

View File

@@ -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);