Search found 5 matches
- Mon Mar 06, 2023 4:21 pm
- Forum: Dialogue System for Unity
- Topic: Skip to next line without delay
- Replies: 2
- Views: 155
Re: Skip to next line without delay
Cheers! Perfect.
- Mon Mar 06, 2023 2:47 pm
- Forum: Dialogue System for Unity
- Topic: Skip to next line without delay
- Replies: 2
- Views: 155
Skip to next line without delay
Hi Tony, I use this script, which is working well. Its purpose is to not show the player typewriter effect. using UnityEngine; using PixelCrushers.DialogueSystem; public class SkipTypewriterForPlayer : MonoBehaviour { void OnConversationLine(Subtitle subtitle) { if (subtitle.speakerInfo.isPlayer) { ...
- Sun Nov 27, 2022 2:43 pm
- Forum: Dialogue System for Unity
- Topic: Continue Button hide after Response Menu
- Replies: 5
- Views: 338
Re: Continue Button hide after Response Menu
This suggestion led me in the right direction.
Turns out the final piece of the puzzle was ticking "Always Force Respond Menu".
Now it's as I wanted. Thanks!
Turns out the final piece of the puzzle was ticking "Always Force Respond Menu".
Now it's as I wanted. Thanks!
- Sun Nov 27, 2022 12:41 pm
- Forum: Dialogue System for Unity
- Topic: Continue Button hide after Response Menu
- Replies: 5
- Views: 338
Re: Continue Button hide after Response Menu
Thanks. That helps. I've left the following settings: Continue Button - Always Show PC Subtitles During Line - Ticked Skipped PC Subtitle After Response Menu - Unticked The Continue Button does not show after the player selects their option, which is what I wanted. Unfortunately, the player's respon...
- Sun Nov 27, 2022 12:04 am
- Forum: Dialogue System for Unity
- Topic: Continue Button hide after Response Menu
- Replies: 5
- Views: 338
Continue Button hide after Response Menu
Hi Tony, Well done on such a professional setup...assets and support. Very cool. I need to hide the Continue Button after a Player Response Menu. There's a "Not Before Response Menu,", but I need a "Not After Response Menu". The reason is simple enough....normally the only player...