Changeset View
Changeset View
Standalone View
Standalone View
source/blender/modifiers/intern/MOD_meshcache.c
| Show First 20 Lines • Show All 410 Lines • ▼ Show 20 Lines | modifier_subpanel_register(region_type, | ||||
| NULL, | NULL, | ||||
| time_remapping_panel_draw, | time_remapping_panel_draw, | ||||
| panel_type); | panel_type); | ||||
| modifier_subpanel_register( | modifier_subpanel_register( | ||||
| region_type, "axis_mapping", "Axis Mapping", NULL, axis_mapping_panel_draw, panel_type); | region_type, "axis_mapping", "Axis Mapping", NULL, axis_mapping_panel_draw, panel_type); | ||||
| } | } | ||||
| ModifierTypeInfo modifierType_MeshCache = { | ModifierTypeInfo modifierType_MeshCache = { | ||||
| /* name */ "MeshCache", | /* name */ N_("MeshCache"), | ||||
| /* structName */ "MeshCacheModifierData", | /* structName */ "MeshCacheModifierData", | ||||
| /* structSize */ sizeof(MeshCacheModifierData), | /* structSize */ sizeof(MeshCacheModifierData), | ||||
| /* srna */ &RNA_MeshCacheModifier, | /* srna */ &RNA_MeshCacheModifier, | ||||
| /* type */ eModifierTypeType_OnlyDeform, | /* type */ eModifierTypeType_OnlyDeform, | ||||
| /* flags */ eModifierTypeFlag_AcceptsCVs | eModifierTypeFlag_AcceptsVertexCosOnly | | /* flags */ eModifierTypeFlag_AcceptsCVs | eModifierTypeFlag_AcceptsVertexCosOnly | | ||||
| eModifierTypeFlag_SupportsEditmode, | eModifierTypeFlag_SupportsEditmode, | ||||
| /* icon */ ICON_MOD_MESHDEFORM, /* TODO: Use correct icon. */ | /* icon */ ICON_MOD_MESHDEFORM, /* TODO: Use correct icon. */ | ||||
| Show All 23 Lines | |||||