Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/key.c
| Show First 20 Lines • Show All 214 Lines • ▼ Show 20 Lines | IDTypeInfo IDType_ID_KE = { | ||||
| .flags = IDTYPE_FLAGS_NO_LIBLINKING, | .flags = IDTYPE_FLAGS_NO_LIBLINKING, | ||||
| .init_data = NULL, | .init_data = NULL, | ||||
| .copy_data = shapekey_copy_data, | .copy_data = shapekey_copy_data, | ||||
| .free_data = shapekey_free_data, | .free_data = shapekey_free_data, | ||||
| .make_local = NULL, | .make_local = NULL, | ||||
| .foreach_id = shapekey_foreach_id, | .foreach_id = shapekey_foreach_id, | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .foreach_external_file = NULL, | |||||
| /* A bit weird, due to shapekeys not being strictly speaking embedded data... But they also | /* A bit weird, due to shapekeys not being strictly speaking embedded data... But they also | ||||
| * share a lot with those (non linkable, only ever used by one owner ID, etc.). */ | * share a lot with those (non linkable, only ever used by one owner ID, etc.). */ | ||||
| .owner_get = shapekey_owner_get, | .owner_get = shapekey_owner_get, | ||||
| .blend_write = shapekey_blend_write, | .blend_write = shapekey_blend_write, | ||||
| .blend_read_data = shapekey_blend_read_data, | .blend_read_data = shapekey_blend_read_data, | ||||
| .blend_read_lib = shapekey_blend_read_lib, | .blend_read_lib = shapekey_blend_read_lib, | ||||
| .blend_read_expand = shapekey_blend_read_expand, | .blend_read_expand = shapekey_blend_read_expand, | ||||
| ▲ Show 20 Lines • Show All 2,383 Lines • Show Last 20 Lines | |||||