Dialogue newbie - point-and-click interface

Announcements, support questions, and discussion for the Dialogue System.
User avatar
Tony Li
Posts: 22904
Joined: Thu Jul 18, 2013 1:27 pm

Re: Dialogue newbie - point-and-click interface

Post by Tony Li »

Hi,

To put the PC and NPC portraits on different sides, you'll either need to handle it yourself with some code (e.g., make a subclass of StandardUISubtitlePanel) or use two different subtitle panels. I recommend two different subtitle panels so you don't have to write and maintain any extra code. Both subtitle panels can share the same Subtitle Text, Continue Button, and even Portrait Name if you want.
SleepyOwl
Posts: 14
Joined: Wed Nov 20, 2024 8:05 pm

Re: Dialogue newbie - point-and-click interface

Post by SleepyOwl »

Awesome, thank you!
SleepyOwl
Posts: 14
Joined: Wed Nov 20, 2024 8:05 pm

Re: Dialogue newbie - point-and-click interface

Post by SleepyOwl »

I wanted to show off what I've been able to do with the Dialogue System! I'm working on a hybrid visual novel / adventure game and wanted to incorporate combat in some way, and DS is surprisingly useful for what I need. Anyway, have a look if you'd like. It's barely functional and looks like hot garbage but it works as a proof of concept.

User avatar
Tony Li
Posts: 22904
Joined: Thu Jul 18, 2013 1:27 pm

Re: Dialogue newbie - point-and-click interface

Post by Tony Li »

Great job! It's always really cool to see what creative uses everyone puts the Dialogue System to. If you want, you can eventually use sequencer commands to do things like show special effects when attacking and when taking damage. If you decide to do it and have questions about setting that up, just let me know.
SleepyOwl
Posts: 14
Joined: Wed Nov 20, 2024 8:05 pm

Re: Dialogue newbie - point-and-click interface

Post by SleepyOwl »

Thanks! I've been having a blast with it. One followup -

To progress, the player solves puzzles by finding items and using them on interactable objects, like a switch.

I want each interactable object to have several states:
1) when you click on it, you get the description of the object
2) when you use an item on it, it has another description about success of failure (which may be more complicated as I'd like to have a unique failure message depending on the item)
3) when the puzzle is solved, if you click on it again you get a "this has already been solved" message

What would be the best way to handle this?
User avatar
Tony Li
Posts: 22904
Joined: Thu Jul 18, 2013 1:27 pm

Re: Dialogue newbie - point-and-click interface

Post by Tony Li »

Hi,

For 1 and 3, you could define a unique DS variable for each object, such as "Solved.LockedChest", "Solved.PowerRelay", "Solved.JigsawPuzzle", etc. Set their Initial Values to false. When each object is completed, set the value to true.

You can either:

- Add two Dialogue System Triggers to each object. In one, use Conditions > Lua Conditions to check if the variable is false; if so start the description conversation. In the other, check if the variable is true; if so start the "already done" conversation.

- Or always run the same conversation, and check the variable in the conversation (e.g., check Variable["Solved." .. Variable["Conversant"]]).

For 2, you may want to write a custom script. You could probably do it all through the Dialogue System, but if you're comfortable with a bit a scripting it would probably be more straightforward.
SleepyOwl
Posts: 14
Joined: Wed Nov 20, 2024 8:05 pm

Re: Dialogue newbie - point-and-click interface

Post by SleepyOwl »

Thank you so much! Again, I really appreciate the support you offer for your system, it's such an amazing toolkit.
User avatar
Tony Li
Posts: 22904
Joined: Thu Jul 18, 2013 1:27 pm

Re: Dialogue newbie - point-and-click interface

Post by Tony Li »

Happy to help!
SleepyOwl
Posts: 14
Joined: Wed Nov 20, 2024 8:05 pm

Re: Dialogue newbie - point-and-click interface

Post by SleepyOwl »

Hello, me again. :)

One weird issue I occasionally have in the editor. When entering Play Mode, I click on my NPC to start a conversation. About a quarter of the time the subtitle panel will flash with part of the dialogue, then begin the typewriter effect.

I took a screen recording of it but when I play it back, I don't see it and the dialogue types out normally. Is this just a weird glitch that happens in the editor?

[Edit] I was testing it out again and managed to catch it in OBS. It flashes for a frame, then begins the typewriter.
User avatar
Tony Li
Posts: 22904
Joined: Thu Jul 18, 2013 1:27 pm

Re: Dialogue newbie - point-and-click interface

Post by Tony Li »

Hi,

Please inspect your subtitle panel's Subtitle Text GameObject. If its typewriter effect component's Play On Enable is ticked, UNtick it.

If that doesn't resolve the issue, let me know.
Post Reply