How to make an attack with the direction of hit?

very interesting, why in the editor is a combination of CTR + Alt + Shift + key, but no key combinations A + B + C?

Pretty much exactly like a normal melee attack.

You have your animation and the weapon which acts as your instigator. If it hits anything you apply damage and in your case you check which attack you did (which buttons are pressed when you click with your mouse) and then call the animation you need.

Hi ,

Try a setup similar to this:

Basically you check to see where the mouse is in relation to your screen. You may want to eventually add in additional branches to check for diagonal movement but this is a good setup for simple up down left right responses.

Omg, this is what I was looking for
Thank you !

Hi ,

Do you mean in PIE? I suppose these are simply the most commonly used combinations. However you can set up a similar approach to combine what keys you are looking for. For instance, you can have each key you are looking at using (lets say 1,2, and 3 for example) set a bool value. In this case you would have 3 bools: 1 pressed, 2 pressed, and 3 pressed. when you have the RMB pressed, it will run through a series of branches. If 1 pressed is true, it will check if 2 pressed is true as well, then if 3 pressed is true. You can have different functions that occur for each specific combination that you are looking for. Have a look at these images for an example:

16470-set+bools.png