Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_keyframing.h
| Show First 20 Lines • Show All 123 Lines • ▼ Show 20 Lines | |||||
| /* -------- */ | /* -------- */ | ||||
| /* Main Keyframing API calls: | /* Main Keyframing API calls: | ||||
| * Use this to create any necessary animation data, and then insert a keyframe | * Use this to create any necessary animation data, and then insert a keyframe | ||||
| * using the current value being keyframed, in the relevant place. Returns success. | * using the current value being keyframed, in the relevant place. Returns success. | ||||
| */ | */ | ||||
| short insert_keyframe(struct Main *bmain, | short insert_keyframe(struct Main *bmain, | ||||
| struct Depsgraph *depsgraph, | |||||
| struct ReportList *reports, | struct ReportList *reports, | ||||
| struct ID *id, | struct ID *id, | ||||
| struct bAction *act, | struct bAction *act, | ||||
| const char group[], | const char group[], | ||||
| const char rna_path[], | const char rna_path[], | ||||
| int array_index, | int array_index, | ||||
| float cfra, | float cfra, | ||||
| eBezTriple_KeyframeType keytype, | eBezTriple_KeyframeType keytype, | ||||
| ▲ Show 20 Lines • Show All 356 Lines • Show Last 20 Lines | |||||