Hey guys,
I have 3rd person project in UE4 i’m struggling with this, i already create macros Input restrictor function (image2) but only works for action mapping not axis mapping which is WASD, how to make that work for WASD guys or any idea to Input restrictor for movement?
What is this spam input you are talking about?
Input restrictor, it caps the amount of times you can press on a button for a period of time for input movement
You can do sth similar if you allow yourself to choose an axis value threshold.
Basically you do whatever you are doing with action mappings, but for the axis mappings you hook a Branch and a do-once node before.
The Branch checks if the axis value is bigger than a certain threshold(for example .5), and if it’s true, it goes into the do-once, and if it’s false it resets the do-once. That way every time the do-once output exec is executed, you can basically treat it like an action, and you can tweak the threshold to allow for deadzones.