Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_scene_api.c
| Show First 20 Lines • Show All 414 Lines • ▼ Show 20 Lines | # ifdef WITH_ALEMBIC | ||||
| RNA_def_enum(func, | RNA_def_enum(func, | ||||
| "quad_method", | "quad_method", | ||||
| rna_enum_modifier_triangulate_quad_method_items, | rna_enum_modifier_triangulate_quad_method_items, | ||||
| 0, | 0, | ||||
| "Quad Method", | "Quad Method", | ||||
| "Method for splitting the quads into triangles"); | "Method for splitting the quads into triangles"); | ||||
| RNA_def_enum(func, | RNA_def_enum(func, | ||||
| "ngon_method", | "ngon_method", | ||||
| rna_enum_modifier_triangulate_quad_method_items, | rna_enum_modifier_triangulate_ngon_method_items, | ||||
| 0, | 0, | ||||
| "Polygon Method", | "N-gon Method", | ||||
| "Method for splitting the polygons into triangles"); | "Method for splitting the n-gons into triangles"); | ||||
| RNA_def_function_flag(func, FUNC_USE_CONTEXT); | RNA_def_function_flag(func, FUNC_USE_CONTEXT); | ||||
| # endif | # endif | ||||
| } | } | ||||
| void RNA_api_scene_render(StructRNA *srna) | void RNA_api_scene_render(StructRNA *srna) | ||||
| { | { | ||||
| FunctionRNA *func; | FunctionRNA *func; | ||||
| Show All 33 Lines | |||||