Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/armature.c
| Show First 20 Lines • Show All 150 Lines • ▼ Show 20 Lines | |||||
| } | } | ||||
| IDTypeInfo IDType_ID_AR = { | IDTypeInfo IDType_ID_AR = { | ||||
| .id_code = ID_AR, | .id_code = ID_AR, | ||||
| .id_filter = FILTER_ID_AR, | .id_filter = FILTER_ID_AR, | ||||
| .main_listbase_index = INDEX_ID_AR, | .main_listbase_index = INDEX_ID_AR, | ||||
| .struct_size = sizeof(bArmature), | .struct_size = sizeof(bArmature), | ||||
| .name = "Armature", | .name = "Armature", | ||||
| .name_plural = "armature", | .name_plural = "armatures", | ||||
| .translation_context = BLT_I18NCONTEXT_ID_ARMATURE, | .translation_context = BLT_I18NCONTEXT_ID_ARMATURE, | ||||
| .flags = 0, | .flags = 0, | ||||
| .init_data = NULL, | .init_data = NULL, | ||||
| .copy_data = armature_copy_data, | .copy_data = armature_copy_data, | ||||
| .free_data = armature_free_data, | .free_data = armature_free_data, | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| }; | }; | ||||
| ▲ Show 20 Lines • Show All 2,952 Lines • Show Last 20 Lines | |||||