Search found 5 matches
- Sun Jun 19, 2022 11:10 pm
- Forum: Dialogue System for Unity
- Topic: Pause Game During Conversation not resuming the game after dialogue has ended
- Replies: 4
- Views: 1071
Re: Pause Game During Conversation not resuming the game after dialogue has ended
I also found it odd that what caused the Time Scale to be zero when the conversation had started, due to which it was recording it as zero and not resuming the game after the dialogue's end. I think pressing any key was somehow causing the Time scale to be zero, because usually if I don't press any ...
- Sun Jun 19, 2022 4:03 am
- Forum: Dialogue System for Unity
- Topic: Pause Game During Conversation not resuming the game after dialogue has ended
- Replies: 4
- Views: 1071
Re: Pause Game During Conversation not resuming the game after dialogue has ended
Never mind, I fixed it by going to the "DialogueSystemTrigger" script and making a slight change in the OnConversationEndAnywhere() function:
Time.timeScale = 1; ----------------------------->Added this line
The game works perfectly now.
Time.timeScale = 1; ----------------------------->Added this line
The game works perfectly now.
- Sat Jun 18, 2022 10:57 pm
- Forum: Dialogue System for Unity
- Topic: Pause Game During Conversation not resuming the game after dialogue has ended
- Replies: 4
- Views: 1071
Pause Game During Conversation not resuming the game after dialogue has ended
Hello! I have a problem running dialogue system. The thing is that I have enabled the option to "Pause game during conversation", but the problem usually arises when the player presses any key during the conversation. If someone does that, the game doesn't resume or "unpause" whe...
- Thu Mar 24, 2022 7:33 pm
- Forum: Dialogue System for Unity
- Topic: Proximity selector in Photon
- Replies: 3
- Views: 407
Re: Proximity selector in Photon
Thank you so much for your help! I ended up making my own script in which I called the Dialogue System's OnUse() method instead of the proximity selector. Everything is working fine now.
- Thu Mar 24, 2022 2:22 pm
- Forum: Dialogue System for Unity
- Topic: Proximity selector in Photon
- Replies: 3
- Views: 407
Proximity selector in Photon
I am making a multiplayer game and I have assigned the dialogue system to the players and the NPC. However, when there is a player who wants to communicate with the NPC, the default message pops up "Player (spacebar to interact)" on both of the players' screens, even when only one player h...