If in a mutable graph I have 2 Skeletal Meshes that have a postprocess anim blueprint, when I the charcter is baked it will only assign one of those postprocess blueprints.
Is there a way to combine all the postprocess anim blueprints to apply them all to the baked character?
Yes-ish. But it is not a simple process. The base statement is that you can’t combine anim instances. However, when defining your skeletal mesh in mutable customizable objects, you can add animation instance metadata to the node. When the customizable object is compiled and built, you can query that metadata and determine what you want to do with it.
Post-process blueprints are more complex in this case because they are tied to the mesh, so you cannot use them as they are set up for those in particular. You would need to move those anim graphs out of the post-process approach and apply them as a linked layer approach.
Hello! Thank you for your response, I am trying to understand. Right now I have separate ABPs for each skeletal mesh (shirt, pants), that are connected in their Customizable Objects.
In your example you have an ABP_ModularInstance that just looks like input pose > emptygraph > outputpose
In another ABP you have 10 of the ABP_ModularInstance, and a function SetLinkedInstances that updates the modular instances.
Currently I cannot find this “Set linked anim graph” node in 5.6. Am I missing a plugin of some sort?
I think I was able to set up the ABP modular instance correctly. My next question is how were you able to get the data from the customizable object to tell the modular instance nodes how to be populated?
This is very helpful. I assume this is on the actor containing the customizable mesh. I am not sure how delegates work, how did you plug in the UpdateAnimList into the delegate input? Currently have created it as an event dispatcher but it will not plug into the delegate pin
You simply need to drag out the delegate pin from the ForEachComponentAnimInstance node and create event that way, it will take its signature and have the correct variables right away