Custom Composite Variables

So, I’ve built a custom composite script that handles essentially 8 directional buttons that I have set to the numpad keys currently, then on ReadValue(), I have composite script take the button data and configure an enum flag set up that can combine buttons (up/down/right/left) and returns as a byte. Then I read it and do my thing with that information…

That question I have is if I set a value for the composite itself, can it be toggled programmatically?
In this particular example that I have essentially a toggle that I want to allow the user to turn on or off the combo buttons to move diagonally, but I can’t find a way to access it through code. (See Image)


ATM there’s no API to set parameters programmatically. Will come but ATM the only way to do it is to either have custom composites read configuration data from a global (similar to how various interactions and composites are reading InputSettings.defaultButtonPressPoint) or to actually modify the bindings through their overrides (which, however, requires fiddling with strings and also involves binding re-resolution).

Appreciate the response. Truly a bummer, would be nice to be able to store input options with the inputs right off. Thanks again pal.