Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/armature.c
| Show First 20 Lines • Show All 309 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 = "armatures", | .name_plural = "armatures", | ||||
| .translation_context = BLT_I18NCONTEXT_ID_ARMATURE, | .translation_context = BLT_I18NCONTEXT_ID_ARMATURE, | ||||
| .flags = 0, | .flags = IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| .init_data = armature_init_data, | .init_data = armature_init_data, | ||||
| .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, | ||||
| .foreach_id = armature_foreach_id, | .foreach_id = armature_foreach_id, | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .owner_get = NULL, | .owner_get = NULL, | ||||
| ▲ Show 20 Lines • Show All 2,709 Lines • Show Last 20 Lines | |||||