Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/io/io_alembic.c
| Show First 20 Lines • Show All 433 Lines • ▼ Show 20 Lines | RNA_def_enum(ot->srna, | ||||
| "quad_method", | "quad_method", | ||||
| rna_enum_modifier_triangulate_quad_method_items, | rna_enum_modifier_triangulate_quad_method_items, | ||||
| MOD_TRIANGULATE_QUAD_SHORTEDGE, | MOD_TRIANGULATE_QUAD_SHORTEDGE, | ||||
| "Quad Method", | "Quad Method", | ||||
| "Method for splitting the quads into triangles"); | "Method for splitting the quads into triangles"); | ||||
| RNA_def_enum(ot->srna, | RNA_def_enum(ot->srna, | ||||
| "ngon_method", | "ngon_method", | ||||
| rna_enum_modifier_triangulate_quad_method_items, | rna_enum_modifier_triangulate_ngon_method_items, | ||||
| MOD_TRIANGULATE_NGON_BEAUTY, | MOD_TRIANGULATE_NGON_BEAUTY, | ||||
| "Polygon Method", | "N-gon Method", | ||||
| "Method for splitting the polygons into triangles"); | "Method for splitting the n-gons into triangles"); | ||||
| RNA_def_boolean(ot->srna, | RNA_def_boolean(ot->srna, | ||||
| "export_hair", | "export_hair", | ||||
| 1, | 1, | ||||
| "Export Hair", | "Export Hair", | ||||
| "Exports hair particle systems as animated curves"); | "Exports hair particle systems as animated curves"); | ||||
| RNA_def_boolean( | RNA_def_boolean( | ||||
| ot->srna, "export_particles", 1, "Export Particles", "Exports non-hair particle systems"); | ot->srna, "export_particles", 1, "Export Particles", "Exports non-hair particle systems"); | ||||
| ▲ Show 20 Lines • Show All 269 Lines • Show Last 20 Lines | |||||