Changeset View
Changeset View
Standalone View
Standalone View
source/blender/io/alembic/ABC_alembic.h
| Show All 13 Lines | |||||
| * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
| */ | */ | ||||
| #pragma once | #pragma once | ||||
| /** \file | /** \file | ||||
| * \ingroup balembic | * \ingroup balembic | ||||
| */ | */ | ||||
| #include "DEG_depsgraph.h" | |||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| extern "C" { | extern "C" { | ||||
| #endif | #endif | ||||
| struct CacheReader; | struct CacheReader; | ||||
| struct ListBase; | struct ListBase; | ||||
| struct Main; | struct Main; | ||||
| struct Mesh; | struct Mesh; | ||||
| Show All 18 Lines | struct AlembicExportParams { | ||||
| bool selected_only; | bool selected_only; | ||||
| bool uvs; | bool uvs; | ||||
| bool normals; | bool normals; | ||||
| bool vcolors; | bool vcolors; | ||||
| bool apply_subdiv; | bool apply_subdiv; | ||||
| bool curves_as_mesh; | bool curves_as_mesh; | ||||
| bool flatten_hierarchy; | bool flatten_hierarchy; | ||||
| bool visible_objects_only; | bool visible_objects_only; | ||||
| bool renderable_only; | |||||
| bool face_sets; | bool face_sets; | ||||
| bool use_subdiv_schema; | bool use_subdiv_schema; | ||||
| bool packuv; | bool packuv; | ||||
| bool triangulate; | bool triangulate; | ||||
| bool export_hair; | bool export_hair; | ||||
| bool export_particles; | bool export_particles; | ||||
| bool export_custom_properties; | bool export_custom_properties; | ||||
| bool use_instancing; | bool use_instancing; | ||||
| enum eEvaluationMode evaluation_mode; | |||||
| /* See MOD_TRIANGULATE_NGON_xxx and MOD_TRIANGULATE_QUAD_xxx | /* See MOD_TRIANGULATE_NGON_xxx and MOD_TRIANGULATE_QUAD_xxx | ||||
| * in DNA_modifier_types.h */ | * in DNA_modifier_types.h */ | ||||
| int quad_method; | int quad_method; | ||||
| int ngon_method; | int ngon_method; | ||||
| float global_scale; | float global_scale; | ||||
| }; | }; | ||||
| ▲ Show 20 Lines • Show All 73 Lines • Show Last 20 Lines | |||||