I am new, and am completely stuck. Please suggest me direction on how to solve this stupid road-block or why I am doing it wrong.
Blueprint:
Problem: I want to set 2D animation (top-view) to a character based on the angle he is walking to. I get the vector, normalize it. And then I want to do something like this:
if angle in range [-45, 45] set Option 2
else if in range [45, 135] set Option 0
Make a function to work it out. That is my problem. I do not know how to make the function with several tests so that it would bring out single output. Last few hours I tried, i ended up splitting into too many branches and never finding a way to combine them together.