Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/hair.c
| Show First 20 Lines • Show All 175 Lines • ▼ Show 20 Lines | |||||
| IDTypeInfo IDType_ID_HA = { | IDTypeInfo IDType_ID_HA = { | ||||
| .id_code = ID_HA, | .id_code = ID_HA, | ||||
| .id_filter = FILTER_ID_HA, | .id_filter = FILTER_ID_HA, | ||||
| .main_listbase_index = INDEX_ID_HA, | .main_listbase_index = INDEX_ID_HA, | ||||
| .struct_size = sizeof(Hair), | .struct_size = sizeof(Hair), | ||||
| .name = "Hair", | .name = "Hair", | ||||
| .name_plural = "hairs", | .name_plural = "hairs", | ||||
| .translation_context = BLT_I18NCONTEXT_ID_HAIR, | .translation_context = BLT_I18NCONTEXT_ID_HAIR, | ||||
| .flags = 0, | .flags = IDTYPE_FLAGS_APPEND_IS_REUSABLE, | ||||
| .init_data = hair_init_data, | .init_data = hair_init_data, | ||||
| .copy_data = hair_copy_data, | .copy_data = hair_copy_data, | ||||
| .free_data = hair_free_data, | .free_data = hair_free_data, | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| .foreach_id = hair_foreach_id, | .foreach_id = hair_foreach_id, | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .owner_get = NULL, | .owner_get = NULL, | ||||
| ▲ Show 20 Lines • Show All 232 Lines • Show Last 20 Lines | |||||