How to change Dialogic choice advance button

Godot Version

Godot 4.3

Question

I am making an RPG, and have decided to use Dialogic to handle most of the dialog. For the dialog advance button, I set it to ‘Z’ by switching dialogic_default_action to ‘Z’, but when choices pop up, I still have to select using the default space button. How do I change the advance button for choices?


This isn’t documented in the Dialogic website yet, but it looks like a contributor added the option to select a choice with the default input action (here’s the pull request that got merged recently). This is my best guess on how to solve this, so bear with me:

  1. Make sure you’re on the latest version of Dialogic, which at the time of this writing should be Dialogic 2 Alpha 16.
  2. Create an extension of the Choice Subsystem and override the use_input_action property to true.

You shouldn’t have to use any extra input actions other than the default by Dialogic.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.