Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Vazquez <blendergit@gmail.com>2021-11-08 18:03:30 +0300
committerAntonio Vazquez <blendergit@gmail.com>2021-11-08 18:03:30 +0300
commite1c4e5df225d161648a12a7019543a0d87ccb2c1 (patch)
tree61e7f406739c52dd68d70d6fc7afaca12a6c9f70 /source/blender/io/gpencil/gpencil_io.h
parentc865577643901c4da9161849fa715e54468de638 (diff)
GPencil: New option to export PDF full scene
This new mode export all frames of the scene. Reviewed By: pepeland Differential Revision: https://developer.blender.org/D13055
Diffstat (limited to 'source/blender/io/gpencil/gpencil_io.h')
-rw-r--r--source/blender/io/gpencil/gpencil_io.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/io/gpencil/gpencil_io.h b/source/blender/io/gpencil/gpencil_io.h
index fab867b38b3..cb004910c1e 100644
--- a/source/blender/io/gpencil/gpencil_io.h
+++ b/source/blender/io/gpencil/gpencil_io.h
@@ -82,6 +82,7 @@ typedef enum eGpencilExportSelect {
typedef enum eGpencilExportFrame {
GP_EXPORT_FRAME_ACTIVE = 0,
GP_EXPORT_FRAME_SELECTED = 1,
+ GP_EXPORT_FRAME_SCENE = 2,
} eGpencilExportFrame;
bool gpencil_io_export(const char *filename, struct GpencilIOParams *iparams);