Hello,
i using Dialogue Systeme, since a few Days for my new Mobile-Project.
My game has some necessary ""Story-Points" with Self-Dialogues / Party Dialogues.
There i need some help, how can i Restrict that the Player can Skip the Dialogue with Escape / Android Back-Button?
Thanks for every Help
Greetings.
Restricting Skipping
Restricting Skipping
Hello,
Inspect the Dialogue Manager GameObject. Set Display Settings > Input Settings > Cancel Conversation. You can set a key (such as Escape) and/or a button name that you've defined in Unity's input settings (Edit > Project Settings > Input).
By default, the Cancel Conversation key is set to Escape, and no button name is set.
If you want to prevent the player from cancelling, set the key to None, and clear the button name field.
In code, you can set DialogueManager.DisplaySettings.inputSettings.cancelConversation.
Inspect the Dialogue Manager GameObject. Set Display Settings > Input Settings > Cancel Conversation. You can set a key (such as Escape) and/or a button name that you've defined in Unity's input settings (Edit > Project Settings > Input).
By default, the Cancel Conversation key is set to Escape, and no button name is set.
If you want to prevent the player from cancelling, set the key to None, and clear the button name field.
In code, you can set DialogueManager.DisplaySettings.inputSettings.cancelConversation.
Restricting Skipping
Hi,
Yeah its work perfectly, thank you for the fast help!
Yeah its work perfectly, thank you for the fast help!