We can cancel a conversation with the button return of our cellphones
We can cancel a conversation with the button return of our cellphones
Hi, Tony. As I said on the title, I noticed that I can skip/ avoid or cancel a conversation just by press the button return of my cellphone. I'm currently working on a math game. So I need that the conversations can't skip/avoid or cancel with that button. Is there any way?
Re: We can cancel a conversation with the button return of our cellphones
Hi,
Inspect the Dialogue Manager GameObject. Set Display Settings > Input Settings > Cancel Subtitle Input and Cancel Conversation Input > Key to None and Button to an empty string.
If that doesn't fix it, it might be related to continue buttons. Set Subtitle Settings > Continue Button to Never.
If that doesn't fix it, check if you have any custom scripts that call DialogueManager.StopConversation().
Inspect the Dialogue Manager GameObject. Set Display Settings > Input Settings > Cancel Subtitle Input and Cancel Conversation Input > Key to None and Button to an empty string.
If that doesn't fix it, it might be related to continue buttons. Set Subtitle Settings > Continue Button to Never.
If that doesn't fix it, check if you have any custom scripts that call DialogueManager.StopConversation().
Re: We can cancel a conversation with the button return of our cellphones
None have worked for me :/. Any other idea?
Re: We can cancel a conversation with the button return of our cellphones
Hi,
Are you playing a build on your device? If so, do you mean the button on your device that closes the current app?
If so, when you close a Unity app, it ends the application. When you resume the app, it starts the application from the beginning. If you want to resume at the same point when the user closed the app, you will need to set up the save system and add and configure ConversationStateSaver and AutoSaveLoad components.
Are you playing a build on your device? If so, do you mean the button on your device that closes the current app?
If so, when you close a Unity app, it ends the application. When you resume the app, it starts the application from the beginning. If you want to resume at the same point when the user closed the app, you will need to set up the save system and add and configure ConversationStateSaver and AutoSaveLoad components.
Re: We can cancel a conversation with the button return of our cellphones
Yes. I played the game on my device. An android device. My cellphone have a button to "return" windows. All the cellphones have the same button. When a conversation is running if I press the button, the conversation is closed.
Re: We can cancel a conversation with the button return of our cellphones
Thanks. Please use the instructions I provided above. If you have questions, let me know.
Re: We can cancel a conversation with the button return of our cellphones
The return button don't close the aplication but only close the conversation. There is another button which minimize the aplication.
I only want to know what to do to avoid closing the conversation.
I only want to know what to do to avoid closing the conversation.
Re: We can cancel a conversation with the button return of our cellphones
Hi,
If it's an Android button, it still terminates the app, or at least releases some of its runtime memory. When you return to the app, Unity will start it again from the first scene in build settings. So you must use the steps I provided above to restore the conversation state.
If you're talking about a Unity UI button, what UI button? What is its purpose?
Is this an Android button or a Unity UI button?
If it's an Android button, it still terminates the app, or at least releases some of its runtime memory. When you return to the app, Unity will start it again from the first scene in build settings. So you must use the steps I provided above to restore the conversation state.
If you're talking about a Unity UI button, what UI button? What is its purpose?
Re: We can cancel a conversation with the button return of our cellphones
This is the button that I was talking:
- Attachments
-
- 1
- 1.jpeg (74.32 KiB) Viewed 513 times
Re: We can cancel a conversation with the button return of our cellphones
That button suspends the Unity app. When you return to the Unity app, Unity starts it from the beginning. So you must use the steps I provided above. The Auto Save Load component will save the conversation state before suspending the app. When you resume the app, the Auto Save Load component will resume the conversation state.