Anim: Insert keyframes without keying sets #113504

Merged
Christoph Lendenfeld merged 59 commits from ChrisLend/blender:keying_sets_rework into main 2023-11-21 15:38:09 +01:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 6f90fc0b53 - Show all commits

View File

@ -153,6 +153,6 @@ bool autokeyframe_property(bContext *C,
int action_insert_key(bAction *action,
std::string rna_path,
float frame,
const blender::Vector<float> &values);
const Vector<float> &values);
} // namespace blender::animrig

View File

@ -1100,7 +1100,7 @@ static bool insert_key_fcu_foo(FCurve *fcu, const float frame, const float value
int action_insert_key(bAction *action,
std::string rna_path,
const float frame,
const blender::Vector<float> &values)
const Vector<float> &values)
{
BLI_assert(action != nullptr);