Anim: Insert keyframes without keying sets #113504
@ -169,7 +169,8 @@ bool autokeyframe_property(bContext *C,
|
||||
/** \} */
|
||||
|
||||
/**
|
||||
* Insert a key in the given action.
|
||||
* Insert keys for the given rna_path in the given action. The length of the values Span is
|
||||
* expected to be the size of the property array.
|
||||
* \param frame is expected to be in NLA space.
|
||||
nathanvegdahl marked this conversation as resolved
Outdated
|
||||
*/
|
||||
int insert_key_action(Main *bmain,
|
||||
nathanvegdahl marked this conversation as resolved
Outdated
Nathan Vegdahl
commented
What is the integer return value? Let's document that too, because at least to me (having not seen the function body yet as I work my way through the PR) it's not at all obvious. What is the integer return value? Let's document that too, because at least to me (having not seen the function body yet as I work my way through the PR) it's not at all obvious.
|
||||
|
@ -967,6 +967,7 @@ int insert_key_action(Main *bmain,
|
||||
const float frame,
|
||||
const Span<float> values)
|
||||
{
|
||||
BLI_assert(bmain != nullptr);
|
||||
BLI_assert(action != nullptr);
|
||||
|
||||
std::string group;
|
||||
|
Loading…
Reference in New Issue
Block a user
Really glad this note on frame parameters is here. However, what does NLA space mean in this case? Local time of the action? Time on the NLA track? I think this could be rephrased or expanded on to be clearer.