UAnimInstance::GetPropagateNotifiesToLinkedInstances
#include "Animation/AnimInstance.h"
Access: public
Specifiers: constBlueprintPureUFUNCTION
Description
Returns whether this anim instance is configured to forward its own animation notifies down to any linked child anim instances.
Caveats & Gotchas
- • This is the outbound counterpart to GetReceiveNotifiesFromLinkedInstances. The two flags work in opposite directions — one controls what this instance accepts; the other controls what it sends.
- • Propagation is disabled by default. If your linked anim graph architecture relies on a parent dispatching notifies to children, both this flag and the child's receive flag must be configured correctly.
Signature
bool GetPropagateNotifiesToLinkedInstances() const { return bPropagateNotifiesToLinkedInstances; } Return Type
bool Example
Check propagation state before changing it C++
if (!AnimInstance->GetPropagateNotifiesToLinkedInstances())
{
AnimInstance->SetPropagateNotifiesToLinkedInstances(true);
} See Also
Tags
Version History
Introduced in: 4.24
| Version | Status | Notes |
|---|---|---|
| 5.6 | stable | — |
Feedback
Was this helpful?