Thank you very much!
For me, the settings not only persist across map changes, they persist even when I shut down computer and then reopne the project
Itās all tied to the DefaultInput.ini file, you should make sure yours is getting updated / is not version controlled
Hee hee! Nice to hear from you! MuhammadMadi!
Youāre welcome! And welcome to the forums!
New Wiki Download ~ Mouse Input Fix
Dear Community,
Iāve just uploaded a fix so that mouseX and mouseY wont get bound to lots of stuff, so if you have that issue, make sure to get the latest on the wiki!
Wiki Download Page
Hi!
Iām having a go at adding controller support to my project by adding extra inputs to each mapping (as you can see in the 1st image). However the āVictory get all action keybindingsā node puts them in a weird order. I can work around it but it feels like a bug.
Here in the logs from bottom to top Iām expecting gamepad right shoulder to be the 2nd entry, but all apart from right trigger puts themselves right at the end
EDIT:
I can re-arrange the bindings in DefaultInput.ini HOWEVER they always re-arrange themselves to be in alphabetical order.
So say I have a binding that has gamepad right trigger then H, if I rebind the H to F then those bindings will automatically switch around to be in alphabetical order and mess up my rebindings system.
If there is a way to disable this auto arrange nonsense that would be great. And sorry itās probably epics doing rather than yours, the victory plugin has been amazing so far!
you working on solus?
Itās probably the version control. I suppose I need to check out the file in the Input Settings? Iāll just check if the file changes when I set my bindings. I am pretty sure that when I set them, they work for that run, but as soon as I stop playing they revert. Gonna try it out and report.
The auto-rearranging happens in this part of the code, I believe:
Settings->SaveKeyMappings();
This is in UInputSettings
I canāt prevent Epicās code from doing this very easily
Very nice to hear from you though!
If you want to write your own implementation that doesnt re-alphabetize youāll want to look in InputSettings.h / .cpp
Yup Iām part of the Solus team
Three New Key Rebinding Nodes!
Dear Community,
Iāve added 3 new key rebinding nodes!
Remove Axis Binding
Remove Action Binding
Get All Axis And Action Mappings For KeY
These nodes let you remove any bindings you want and know how many bindings a key has!
Hereās a pic of sample usage!
**Download**
Here's the full project for you!
**Wiki Link to Download Page**
https://wiki.unrealengine.com/File:ReBindableKeys.zip

Thank you for giving this away. REALLY APPRECIATE IT!
Yeah, I just submitted my input remapping plugin to the marketplace, and I had to rewrite a good amount of my code/scrap some functions after I realized that they organize alphabetically, as some of my functions used indexes that the player could specify.
Hi . Thanks for the plugin, itās awesome, and Iām really happy to see that youāre still updating it, the new nodes are great.
I found a little mixup in the axis mapping blueprint in the sample project. The mouse axes were switched at one point. Hereās a screenshot:
This pretty much renders the whole system useless in my opinion.
When the end user accidentally binds both Axis to the same key (for example W for both move forward and back), it completely breaks the whole system beyond repair. From that moment on both Axis will show the same scale and there is no way to restore default values for anyone outside of the editor, because as you said you cannot remove or recreate an axis, only change an existing one. If that is broken, thereās nothing you can do to restore it. Until this is fixed this system looks neat but it cannot be used for a finished product it seems.
Thank you a lot!
Hey,
i found a little bug on blueprint side of your system, here happen you canāt bind Left Mouse Button because if you click on button it capture the event as a click because the button is still active on rebind, i solved it with a little trick:
- Disable the button after the OnClicked event in the VictoryElement
[spoiler]
[/spoiler]
- In the widget where you use the VictoryElement re-enable the button into the OnMouseButtonDown and OnKeyDown functions
[spoiler]
[/spoiler]
I hope it help for who have the same issue

Ah, great idea! I did not think to disable the button after clicking on it the first time, then enabling it after binding so you can bind the LMB, Iāll make sure to give the fix so he can add it to the download wiki page! I also fixed
from -'s post!
There is a little bit of a delay when setting the LMB but all the other ones should work instantly!
āGMC
Dear @, @ZioYuri78, and @gmc,
Wow this is great! Thank you for mentioning these fixes!
And thank you gmc for sending me the new version!
Iāve updated the wiki download link:
Have fun today everyone!
Do I need Victory to use this?
Hi, Iāve imported this to a 4.11 project and it looks like the OnKeyDown function is no longer getting fired. Works fine with mouse clicks and mouse moves, but not with keypress.
Ah my bad. I had to set the IsFocusable flag on the Main_ByRama blueprint.