Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_modifier.c
| Context not available. | |||||
| {MOD_TRIANGULATE_QUAD_BEAUTY, | {MOD_TRIANGULATE_QUAD_BEAUTY, | ||||
| "BEAUTY", | "BEAUTY", | ||||
| 0, | 0, | ||||
| "Beauty ", | "Beauty", | ||||
| "Split the quads in nice triangles, slower method"}, | "Split the quads in nice triangles, slower method"}, | ||||
| {MOD_TRIANGULATE_QUAD_FIXED, | {MOD_TRIANGULATE_QUAD_FIXED, | ||||
| "FIXED", | "FIXED", | ||||
| Context not available. | |||||
| static void rna_def_modifier_meshcache(BlenderRNA *brna) | static void rna_def_modifier_meshcache(BlenderRNA *brna) | ||||
| { | { | ||||
| static const EnumPropertyItem prop_format_type_items[] = { | static const EnumPropertyItem prop_format_type_items[] = { | ||||
| {MOD_MESHCACHE_TYPE_MDD, "MDD", 0, "MDD ", ""}, | {MOD_MESHCACHE_TYPE_MDD, "MDD", 0, "MDD", ""}, | ||||
| {MOD_MESHCACHE_TYPE_PC2, "PC2", 0, "PC2", ""}, | {MOD_MESHCACHE_TYPE_PC2, "PC2", 0, "PC2", ""}, | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| Context not available. | |||||
| }; | }; | ||||
| static const EnumPropertyItem prop_interpolation_type_items[] = { | static const EnumPropertyItem prop_interpolation_type_items[] = { | ||||
| {MOD_MESHCACHE_INTERP_NONE, "NONE", 0, "None ", ""}, | {MOD_MESHCACHE_INTERP_NONE, "NONE", 0, "None", ""}, | ||||
| {MOD_MESHCACHE_INTERP_LINEAR, "LINEAR", 0, "Linear", ""}, | {MOD_MESHCACHE_INTERP_LINEAR, "LINEAR", 0, "Linear", ""}, | ||||
| /* for cardinal we'd need to read 4x cache's */ | /* for cardinal we'd need to read 4x cache's */ | ||||
| // {MOD_MESHCACHE_INTERP_CARDINAL, "CARDINAL", 0, "Cardinal", ""}, | // {MOD_MESHCACHE_INTERP_CARDINAL, "CARDINAL", 0, "Cardinal", ""}, | ||||
| Context not available. | |||||