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:
authorKévin Dietrich <kevin.dietrich@mailoo.org>2016-09-09 06:30:43 +0300
committerKévin Dietrich <kevin.dietrich@mailoo.org>2016-09-09 06:30:43 +0300
commit631af9f930d2fd2c76751204ff22239aa95f761d (patch)
treeb14da01b27eefed9219f756be5dd55d253870bc0 /source/blender/alembic/ABC_alembic.h
parent78ea06fea4a74181c25254ed72d50d8a743b6954 (diff)
Alembic: add option to triangulate meshes upon export.
Diffstat (limited to 'source/blender/alembic/ABC_alembic.h')
-rw-r--r--source/blender/alembic/ABC_alembic.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/alembic/ABC_alembic.h b/source/blender/alembic/ABC_alembic.h
index cf121f8488c..e62713f57f5 100644
--- a/source/blender/alembic/ABC_alembic.h
+++ b/source/blender/alembic/ABC_alembic.h
@@ -64,8 +64,12 @@ struct AlembicExportParams {
unsigned int face_sets : 1;
unsigned int use_subdiv_schema : 1;
unsigned int packuv : 1;
+ unsigned int triangulate : 1;
unsigned int compression_type : 1;
+
+ int quad_method;
+ int ngon_method;
float global_scale;
};