Original Discord Post by budlong | 2024-01-19 17:20:22
is it possible to blend (or stack) two actions?
for example … if i have two actions
wave (upperbody slot only)
walk ( full body slot anim),
can i tell the NPC to walk and wave at the same time or do i need to make a third action “walk and wave” and trigger both anims in that third action?
there are some tricks that you can try to get such functionality working, basically, let’s say you want the character to be able to walk and do one of the following in parallel (wave, nod, play music, do nothing), so what we can try is:
Add the action walk as follows, Walk and <wave - nod - play music - do nothing>
Add the event walk in your character blueprint as in the image attached (we only did it for nod and wave for blueprint simplicity)
Reply by freezfast | 2024-01-28 20:22:29
there are some tricks that you can try to get such functionality working, basically, let’s say you want the character to be able to walk and do one of the following in parallel (wave, nod, play music, do nothing), so what we can try is:
Add the action walk as follows, Walk and <wave - nod - play music - do nothing>
Add the event walk in your character blueprint as in the image attached (we only did it for nod and wave for blueprint simplicity)
Reply by budlong | 2024-01-29 01:40:03
ill try this out in the morning, thanks for the example!