Page 1 of 1

Is there a Playmaker Action for entry Dialogue Text

Posted: Fri Jul 04, 2025 10:33 am
by Miky
Hello I am trying to use the use the dialogue system with Playamaker. I specifcally want to get the dialogue text from the current entry and send it to playmaker. Is there an action for this? and is there one that can prompt the dialogue system to more to next entry?

Re: Is there a Playmaker Action for entry Dialogue Text

Posted: Fri Jul 04, 2025 1:01 pm
by Tony Li
Hi,

> I specifically want to get the dialogue text from the current entry and send it to playmaker. Is there an action for this?

Add a Dialogue System Events To Playmaker component to your Dialogue Manager or any GameObject that will receive Dialogue System messages (see table).

This will raise an FSM event named "OnConversationLine" for entry dialogue text. The event's string data will be the dialogue text.


> and is there one that can prompt the dialogue system to more to next entry?

You can use Playmaker's Send Message action to send the message "OnConversationContinueAll" to the Dialogue Manager GameObject.

Or write a custom action that calls this line of C# code:

Code: Select all

PixelCrushers.DialogueSystem.conversationView.OnConversationContinueAll();