Search found 3 matches

by Demonz312
Sat Mar 08, 2025 1:48 pm
Forum: Dialogue System for Unity
Topic: Hide continue button in specific dialogue entry
Replies: 5
Views: 2558

Re: Hide continue button in specific dialogue entry

Thank you for your help! ;)

i ended up with setting the SetContinueMode(false); on the player response so the next node will be without the continue button and at the start dialogue "Hello there, traveler!" reseting it back to SetContinueMode(true);
by Demonz312
Sat Mar 08, 2025 12:04 pm
Forum: Dialogue System for Unity
Topic: Hide continue button in specific dialogue entry
Replies: 5
Views: 2558

Re: Hide continue button in specific dialogue entry

seems like i'm doing something wrong.

when player choose the response "Sorry, I'm busy right now." the next dialogue entry "See you later" never shows if it has in sequence SetContinueMode(false) and the dialogue ends.

what i'm doing wrong here?
by Demonz312
Sat Mar 08, 2025 5:16 am
Forum: Dialogue System for Unity
Topic: Hide continue button in specific dialogue entry
Replies: 5
Views: 2558

Hide continue button in specific dialogue entry

hey, i want to hide continue button in specific dialogue entry so it will continue to the next dialogue or if the dialogue is the last one, show the dialogue without continue button and close after few seconds. i tried to use the SetContinueMode(false) but it disables completely the dialogue. so is ...