Hello, I would like to create a language selection screen when the game launches. I would like to use the same menu as the one in the options. However, I cannot choose the language using left or right (I am using DirectInput) but only with InteractionA. I would like to select the language with left and right and confirm this choice to go to the main menu by confirming with InteractionA. How can I change this?
thx
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
The most simple way to do this would be to have each language (as a flag icon) be a separate Button element arranged in a row. Pressing each would then run an Save: Set Option Action to switch the language.
Otherwise, you can add left/right Buttons to your Menu either side of the Language element, and then use AC's Events Editor to listen out for them being selected (not pressed) with the Menu / Hover event. When they get selected, update the language in a similar way, and then use the Menu: Select Action to force selection back to the central button.
Hi, thanks i do the the flag solution.