Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/action.c
| Show First 20 Lines • Show All 292 Lines • ▼ Show 20 Lines | IDTypeInfo IDType_ID_AC = { | ||||
| .foreach_cache = NULL, | .foreach_cache = NULL, | ||||
| .blend_write = action_blend_write, | .blend_write = action_blend_write, | ||||
| .blend_read_data = action_blend_read_data, | .blend_read_data = action_blend_read_data, | ||||
| .blend_read_lib = action_blend_read_lib, | .blend_read_lib = action_blend_read_lib, | ||||
| .blend_read_expand = action_blend_read_expand, | .blend_read_expand = action_blend_read_expand, | ||||
| .blend_read_undo_preserve = NULL, | .blend_read_undo_preserve = NULL, | ||||
| .lib_override_apply_post = NULL, | |||||
| }; | }; | ||||
| /* ***************** Library data level operations on action ************** */ | /* ***************** Library data level operations on action ************** */ | ||||
| bAction *BKE_action_add(Main *bmain, const char name[]) | bAction *BKE_action_add(Main *bmain, const char name[]) | ||||
| { | { | ||||
| bAction *act; | bAction *act; | ||||
| ▲ Show 20 Lines • Show All 1,712 Lines • Show Last 20 Lines | |||||