Hello there, is there a possibility to combine two enum array input into one single string?
So I want to create a skateboard trick combo inside my game and there is multiple animation inside that combo when it’s triggered by calling their name using data table.
For example: Kickflip is triggered by “JumpLeftRight”
So if I hit Jump, then Left, then Right the string will combined to: “JumpLeftRight”
Instead of that, I can’t combine that input together into a single string trigger.
and I will only trigger:
“Jump”
“Left”
“Right”
The result will only triggered a single string and not combined them together.
I want to combine it, so if I trigger “Jump” it will be wait for the next input e.g “Left” then it will trigger “JumpLeft”
Does anyone here know how to combine them? please help me out, I tried to use append node to combine the two input together but the result will “JumpJump” “LeftLeft” or “RightRight”.
Thank you, and I wish you a great day!