== Grease Pencil - Conversions + Bugfixes ==

* New stuff: Grease Pencil strokes on the active layer can now be converted to 3d curves (geometry). More work is still needed to make the result look be more optimal (i.e. extruded curve)

* Bugfix: Spacing between collapsed layers is more compact now
This commit is contained in:
2008-08-27 13:02:44 +00:00
parent 6cccdf0cb2
commit c6acbc3047
6 changed files with 173 additions and 11 deletions

View File

@@ -172,6 +172,7 @@
#include "BDR_drawobject.h"
#include "BDR_editcurve.h"
#include "BDR_unwrapper.h"
#include "BDR_gpencil.h"
#include <time.h>
#include "mydevice.h"
@@ -2827,7 +2828,10 @@ void convertmenu(void)
if(G.scene->id.lib) return;
obact= OBACT;
if(obact==0) return;
if(obact==0) {
gpencil_convert_menu();
return;
}
if(!obact->flag & SELECT) return;
if(G.obedit) return;