PixelCrushers.DialogueSystem.DialogueManager Class Reference

A static class that provides a simplified interface to the dialogue system's core functions. More...

Static Public Member Functions

static void SetLanguage (string language)
 Sets the language to use for localized text. More...
 
static void SetDialogueSystemInput (bool value)
 Enables or disables Dialogue System input. More...
 
static bool IsDialogueSystemInputDisabled ()
 Returns true if Dialogue System input is disabled. More...
 
static void AddDatabase (DialogueDatabase database)
 Adds a dialogue database to memory. More...
 
static void RemoveDatabase (DialogueDatabase database)
 Removes a dialogue database from memory. More...
 
static void ResetDatabase (DatabaseResetOptions databaseResetOptions)
 Resets the database to a default state. More...
 
static void PreloadMasterDatabase ()
 Preloads the master database. More...
 
static void PreloadDialogueUI ()
 Preloads the dialogue UI. More...
 
static bool ConversationHasValidEntry (string title, Transform actor, Transform conversant)
 Checks whether a conversation has any valid entries linked from the start entry, since it's possible that the conditions of all entries could be false. More...
 
static bool ConversationHasValidEntry (string title, Transform actor)
 Checks whether a conversation has any valid entries linked from the start entry, since it's possible that the conditions of all entries could be false. More...
 
static bool ConversationHasValidEntry (string title)
 Checks whether a conversation has any valid entries linked from the start entry, since it's possible that the conditions of all entries could be false. More...
 
static void StartConversation (string title, Transform actor, Transform conversant, int initialDialogueEntryID)
 Starts a conversation, which also broadcasts an OnConversationStart message to the actor and conversant. More...
 
static void StartConversation (string title, Transform actor, Transform conversant)
 Starts a conversation, which also broadcasts an OnConversationStart message to the actor and conversant. More...
 
static void StartConversation (string title, Transform actor)
 Starts a conversation, which also broadcasts an OnConversationStart message to the actor. More...
 
static void StartConversation (string title)
 Starts the conversation with no transforms specified for the actor or conversant. More...
 
static void StopConversation ()
 Stop the current conversation immediately, and sends an OnConversationEnd message to the actor and conversant. More...
 
static void UpdateResponses ()
 Updates the responses for the current state of the current conversation. More...
 
static void Bark (string conversationTitle, Transform speaker, Transform listener, BarkHistory barkHistory)
 Causes a character to bark a line at another character. More...
 
static void Bark (string conversationTitle, Transform speaker, Transform listener)
 Causes a character to bark a line at another character. More...
 
static void Bark (string conversationTitle, Transform speaker)
 Causes a character to bark a line. More...
 
static void Bark (string conversationTitle, Transform speaker, BarkHistory barkHistory)
 Causes a character to bark a line. More...
 
static void BarkString (string barkText, Transform speaker, Transform listener=null, string sequence=null)
 Causes a character to bark a literal string instead of looking up its line from a conversation. More...
 
static float GetBarkDuration (string barkText)
 Returns the default duration that a string of bark text will be shown. More...
 
static void ShowAlert (string message, float duration)
 Shows an alert message using the dialogue UI. More...
 
static void ShowAlert (string message)
 Shows an alert message using the dialogue UI for the UI's default duration. More...
 
static void CheckAlerts ()
 Checks Lua Variable['Alert'] to see if we need to show an alert. More...
 
static string GetLocalizedText (string s)
 Gets localized text. More...
 
static Sequencer PlaySequence (string sequence, Transform speaker, Transform listener, bool informParticipants, bool destroyWhenDone, string entrytag)
 Starts a sequence. More...
 
static Sequencer PlaySequence (string sequence, Transform speaker, Transform listener, bool informParticipants, bool destroyWhenDone)
 Starts a sequence. More...
 
static Sequencer PlaySequence (string sequence, Transform speaker, Transform listener, bool informParticipants)
 Starts a sequence. More...
 
static Sequencer PlaySequence (string sequence, Transform speaker, Transform listener)
 Starts a sequence, and sends OnSequenceStart/OnSequenceEnd messages to the participants. More...
 
static Sequencer PlaySequence (string sequence)
 Starts a sequence. More...
 
static void StopSequence (Sequencer sequencer)
 Stops a sequence. More...
 
static void Pause ()
 Pauses the Dialogue System. More...
 
static void Unpause ()
 Unpauses the Dialogue System. More...
 
static void UseDialogueUI (GameObject gameObject)
 Sets the dialogue UI. More...
 
static void SetPortrait (string actorName, string portraitName)
 Sets an actor's portrait. More...
 
static void AddLuaObserver (string luaExpression, LuaWatchFrequency frequency, LuaChangedDelegate luaChangedHandler)
 Adds a Lua expression observer. More...
 
static void RemoveLuaObserver (string luaExpression, LuaWatchFrequency frequency, LuaChangedDelegate luaChangedHandler)
 Removes a Lua expression observer. More...
 
static void RemoveAllObservers (LuaWatchFrequency frequency)
 Removes all Lua expression observers for a specified frequency. More...
 
static void RemoveAllObservers ()
 Removes all Lua expression observers. More...
 
static void RegisterAssetBundle (AssetBundle bundle)
 Registers an asset bundle with the Dialogue System. More...
 
static void UnregisterAssetBundle (AssetBundle bundle)
 Unregisters an asset bundle from the Dialogue System. More...
 
static UnityEngine.Object LoadAsset (string name)
 Loads a named asset from the registered asset bundles or from Resources. More...
 
static UnityEngine.Object LoadAsset (string name, System.Type type)
 Loads a named asset from the registered asset bundles or from Resources. More...
 
static void SendUpdateTracker ()
 Sends an "UpdateTracker" message to the Dialogue Manager, which may have a quest tracker component that listens for this message, More...
 

Properties

static DialogueSystemController Instance [get]
 Gets the instance of DialogueSystemController. More...
 
static bool HasInstance [get]
 Returns true if the singleton has found or created an instance. More...
 
static DatabaseManager DatabaseManager [get]
 Gets the database manager. More...
 
static DialogueDatabase MasterDatabase [get]
 Gets the master database. More...
 
static IDialogueUI DialogueUI [get, set]
 Gets the dialogue UI. More...
 
static DisplaySettings DisplaySettings [get]
 Gets the display settings. More...
 
static bool IsConversationActive [get]
 Indicates whether a conversation is active. More...
 
static bool AllowSimultaneousConversations [get]
 Indicates whether more than one conversation can play at the same time. More...
 
static IsDialogueEntryValidDelegate IsDialogueEntryValid [get, set]
 The IsDialogueEntryValid delegate (if one is assigned). More...
 
static GetInputButtonDownDelegate GetInputButtonDown [get, set]
 The GetInputButtonDown delegate. More...
 
static Transform CurrentActor [get]
 Gets the current actor in the last conversation started (or null if no conversation is active or the last converstion started has ended). More...
 
static Transform CurrentConversant [get]
 Gets the current conversant in the last conversation started (or null if no conversation is active or the last conversation started has ended). More...
 
static ConversationState CurrentConversationState [get]
 Gets the current conversation state of the last conversation started (or null if no conversation is active or the last conversation started has ended). More...
 
static string LastConversationStarted [get]
 Gets the title of the last conversation started. More...
 
static int LastConversationID [get]
 Gets the ID of the last conversation started. More...
 
static ConversationController ConversationController [get]
 
static ConversationModel ConversationModel [get]
 
static ConversationView ConversationView [get]
 
static DialogueDebug.DebugLevel DebugLevel [get, set]
 Gets or sets the debug level. More...
 
static bool AllowLuaExceptions [get, set]
 Gets or sets a value indicating whether exceptions in Lua code will be caught by the calling method or allowed to rise up to Unity. More...
 

Detailed Description

A static class that provides a simplified interface to the dialogue system's core functions.

This class manages a singleton instance of DialogueSystemController.

Member Function Documentation

◆ AddDatabase()

static void PixelCrushers.DialogueSystem.DialogueManager.AddDatabase ( DialogueDatabase  database)
static

Adds a dialogue database to memory.

To save memory or reduce load time, you may want to break up your dialogue data into multiple smaller databases. You can add or remove these databases as needed.

Parameters
databaseThe database to add.

◆ AddLuaObserver()

static void PixelCrushers.DialogueSystem.DialogueManager.AddLuaObserver ( string  luaExpression,
LuaWatchFrequency  frequency,
LuaChangedDelegate  luaChangedHandler 
)
static

Adds a Lua expression observer.

Parameters
luaExpressionLua expression to watch.
frequencyFrequency to check the expression.
luaChangedHandlerDelegate to call when the expression changes. This should be in the form:
void MyDelegate(LuaWatchItem luaWatchItem, Lua.Result newValue) {...}

◆ Bark() [1/4]

static void PixelCrushers.DialogueSystem.DialogueManager.Bark ( string  conversationTitle,
Transform  speaker 
)
static

Causes a character to bark a line.

A bark is a line spoken outside of a full conversation. It uses a simple gameplay bark UI instead of the dialogue UI. Since this form of the Bark() method does not include a BarkHistory, a random bark is selected from the bark lines.

Parameters
conversationTitleTitle of the conversation that contains the bark lines. In this conversation, all dialogue entries linked from the first entry are considered bark lines.
speakerThe character barking the line.

◆ Bark() [2/4]

static void PixelCrushers.DialogueSystem.DialogueManager.Bark ( string  conversationTitle,
Transform  speaker,
BarkHistory  barkHistory 
)
static

Causes a character to bark a line.

A bark is a line spoken outside of a full conversation. It uses a simple gameplay bark UI instead of the dialogue UI.

Parameters
conversationTitleTitle of the conversation that contains the bark lines. In this conversation, all dialogue entries linked from the first entry are considered bark lines.
speakerThe character barking the line.
barkHistoryBark history used to track the most recent bark, so the bark controller can go through the bark lines in a specified order.

◆ Bark() [3/4]

static void PixelCrushers.DialogueSystem.DialogueManager.Bark ( string  conversationTitle,
Transform  speaker,
Transform  listener 
)
static

Causes a character to bark a line at another character.

A bark is a line spoken outside of a full conversation. It uses a simple gameplay bark UI instead of the dialogue UI. Since this form of the Bark() method does not include a BarkHistory, a random bark is selected from the bark lines.

Parameters
conversationTitleTitle of the conversation that contains the bark lines. In this conversation, all dialogue entries linked from the first entry are considered bark lines.
speakerThe character barking the line.
listenerThe character being barked at.

◆ Bark() [4/4]

static void PixelCrushers.DialogueSystem.DialogueManager.Bark ( string  conversationTitle,
Transform  speaker,
Transform  listener,
BarkHistory  barkHistory 
)
static

Causes a character to bark a line at another character.

A bark is a line spoken outside of a full conversation. It uses a simple gameplay bark UI instead of the dialogue UI.

Parameters
conversationTitleTitle of the conversation that contains the bark lines. In this conversation, all dialogue entries linked from the first entry are considered bark lines.
speakerThe character barking the line.
listenerThe character being barked at.
barkHistoryBark history used to track the most recent bark, so the bark controller can go through the bark lines in a specified order.

◆ BarkString()

static void PixelCrushers.DialogueSystem.DialogueManager.BarkString ( string  barkText,
Transform  speaker,
Transform  listener = null,
string  sequence = null 
)
static

Causes a character to bark a literal string instead of looking up its line from a conversation.

Parameters
barkTextThe string to bark.
speakerThe barker.
listenerThe target of the bark. (May be null)
sequenceThe optional sequence to play. (May be null or empty)

◆ CheckAlerts()

static void PixelCrushers.DialogueSystem.DialogueManager.CheckAlerts ( )
static

Checks Lua Variable['Alert'] to see if we need to show an alert.

◆ ConversationHasValidEntry() [1/3]

static bool PixelCrushers.DialogueSystem.DialogueManager.ConversationHasValidEntry ( string  title)
static

Checks whether a conversation has any valid entries linked from the start entry, since it's possible that the conditions of all entries could be false.

Returns
true, if the conversation has a valid entry, false otherwise.
Parameters
titleThe title of the conversation to look up in the master database.

◆ ConversationHasValidEntry() [2/3]

static bool PixelCrushers.DialogueSystem.DialogueManager.ConversationHasValidEntry ( string  title,
Transform  actor 
)
static

Checks whether a conversation has any valid entries linked from the start entry, since it's possible that the conditions of all entries could be false.

Returns
true, if the conversation has a valid entry, false otherwise.
Parameters
titleThe title of the conversation to look up in the master database.
actorThe transform of the actor (primary participant). The sequencer uses this to direct camera angles and perform other actions. In PC-NPC conversations, the actor is usually the PC.

◆ ConversationHasValidEntry() [3/3]

static bool PixelCrushers.DialogueSystem.DialogueManager.ConversationHasValidEntry ( string  title,
Transform  actor,
Transform  conversant 
)
static

Checks whether a conversation has any valid entries linked from the start entry, since it's possible that the conditions of all entries could be false.

Returns
true, if the conversation has a valid entry, false otherwise.
Parameters
titleThe title of the conversation to look up in the master database.
actorThe transform of the actor (primary participant). The sequencer uses this to direct camera angles and perform other actions. In PC-NPC conversations, the actor is usually the PC.
conversantThe transform of the conversant (the other participant). The sequencer uses this to direct camera angles and perform other actions. In PC-NPC conversations, the conversant is usually the NPC.

◆ GetBarkDuration()

static float PixelCrushers.DialogueSystem.DialogueManager.GetBarkDuration ( string  barkText)
static

Returns the default duration that a string of bark text will be shown.

Parameters
barkTextThe text that will be barked (to determine the duration).
Returns
The default duration in seconds for the specified bark text.

◆ GetLocalizedText()

static string PixelCrushers.DialogueSystem.DialogueManager.GetLocalizedText ( string  s)
static

Gets localized text.

Returns
If the specified field exists in the table, returns the field's localized text for the current language. Otherwise returns the field itself.
Parameters
sThe field to look up.

◆ IsDialogueSystemInputDisabled()

static bool PixelCrushers.DialogueSystem.DialogueManager.IsDialogueSystemInputDisabled ( )
static

Returns true if Dialogue System input is disabled.

Returns

◆ LoadAsset() [1/2]

static UnityEngine.Object PixelCrushers.DialogueSystem.DialogueManager.LoadAsset ( string  name)
static

Loads a named asset from the registered asset bundles or from Resources.

Returns
The asset, or null if not found.
Parameters
nameName of the asset.

◆ LoadAsset() [2/2]

static UnityEngine.Object PixelCrushers.DialogueSystem.DialogueManager.LoadAsset ( string  name,
System.Type  type 
)
static

Loads a named asset from the registered asset bundles or from Resources.

Returns
The asset, or null if not found.
Parameters
nameName of the asset.
typeType of the asset.

◆ Pause()

static void PixelCrushers.DialogueSystem.DialogueManager.Pause ( )
static

Pauses the Dialogue System.

Also broadcasts OnDialogueSystemPause to the Dialogue Manager and conversation participants. Conversations, timers, typewriter and fade effects, and the AudioWait() and Voice() sequencer commands will be paused. Other than this, AudioSource, Animation, and Animator components will not be paused; it's up to you to handle them as appropriate for your project.

◆ PlaySequence() [1/5]

static Sequencer PixelCrushers.DialogueSystem.DialogueManager.PlaySequence ( string  sequence)
static

Starts a sequence.

See sequencer.

Returns
The sequencer that is playing the sequence.
Parameters
sequenceThe sequence to play.

◆ PlaySequence() [2/5]

static Sequencer PixelCrushers.DialogueSystem.DialogueManager.PlaySequence ( string  sequence,
Transform  speaker,
Transform  listener 
)
static

Starts a sequence, and sends OnSequenceStart/OnSequenceEnd messages to the participants.

See sequencer.

Returns
The sequencer that is playing the sequence.
Parameters
sequenceThe sequence to play.
speakerThe speaker, for sequence commands that reference the speaker.
listenerThe listener, for sequence commands that reference the listener.

◆ PlaySequence() [3/5]

static Sequencer PixelCrushers.DialogueSystem.DialogueManager.PlaySequence ( string  sequence,
Transform  speaker,
Transform  listener,
bool  informParticipants 
)
static

Starts a sequence.

See sequencer.

Returns
The sequencer that is playing the sequence.
Parameters
sequenceThe sequence to play.
speakerThe speaker, for sequence commands that reference the speaker.
listenerThe listener, for sequence commands that reference the listener.
informParticipantsSpecifies whether to send OnSequenceStart and OnSequenceEnd messages to the speaker and listener. Default is true.

◆ PlaySequence() [4/5]

static Sequencer PixelCrushers.DialogueSystem.DialogueManager.PlaySequence ( string  sequence,
Transform  speaker,
Transform  listener,
bool  informParticipants,
bool  destroyWhenDone 
)
static

Starts a sequence.

See sequencer.

Returns
The sequencer that is playing the sequence.
Parameters
sequenceThe sequence to play.
speakerThe speaker, for sequence commands that reference the speaker.
listenerThe listener, for sequence commands that reference the listener.
informParticipantsSpecifies whether to send OnSequenceStart and OnSequenceEnd messages to the speaker and listener. Default is true.
destroyWhenDoneSpecifies whether destroy the sequencer when done playing the sequence. Default is true.

◆ PlaySequence() [5/5]

static Sequencer PixelCrushers.DialogueSystem.DialogueManager.PlaySequence ( string  sequence,
Transform  speaker,
Transform  listener,
bool  informParticipants,
bool  destroyWhenDone,
string  entrytag 
)
static

Starts a sequence.

See sequencer.

Parameters
sequenceThe sequence to play.
speakerThe speaker, for sequence commands that reference the speaker.
listenerThe listener, for sequence commands that reference the listener.
informParticipantsSpecifies whether to send OnSequenceStart and OnSequenceEnd messages to the speaker and listener. Default is true.
destroyWhenDoneSpecifies whether destroy the sequencer when done playing the sequence. Default is
entrytagThe entrytag to associate with the sequence.
Returns
The sequencer that is playing the sequence.

◆ PreloadDialogueUI()

static void PixelCrushers.DialogueSystem.DialogueManager.PreloadDialogueUI ( )
static

Preloads the dialogue UI.

The Dialogue System delays loading of the dialogue UI until the first time it's needed for a conversation or alert. Since dialogue UIs often contain textures and other art assets, loading can cause a slight pause. You may want to preload the UI at a time of your design by using this method.

◆ PreloadMasterDatabase()

static void PixelCrushers.DialogueSystem.DialogueManager.PreloadMasterDatabase ( )
static

Preloads the master database.

The Dialogue System delays loading of the dialogue database until the data is needed. This avoids potentially long delays during Start(). If you want to load the database manually (for example to run Lua commands on its contents), call this method.

◆ RegisterAssetBundle()

static void PixelCrushers.DialogueSystem.DialogueManager.RegisterAssetBundle ( AssetBundle  bundle)
static

Registers an asset bundle with the Dialogue System.

This allows sequencer commands to load assets inside it.

Parameters
bundleAsset bundle.

◆ RemoveAllObservers() [1/2]

static void PixelCrushers.DialogueSystem.DialogueManager.RemoveAllObservers ( )
static

Removes all Lua expression observers.

◆ RemoveAllObservers() [2/2]

static void PixelCrushers.DialogueSystem.DialogueManager.RemoveAllObservers ( LuaWatchFrequency  frequency)
static

Removes all Lua expression observers for a specified frequency.

Parameters
frequencyFrequency.

◆ RemoveDatabase()

static void PixelCrushers.DialogueSystem.DialogueManager.RemoveDatabase ( DialogueDatabase  database)
static

Removes a dialogue database from memory.

To save memory or reduce load time, you may want to break up your dialogue data into multiple smaller databases. You can add or remove these databases as needed.

Parameters
databaseThe database to remove.

◆ RemoveLuaObserver()

static void PixelCrushers.DialogueSystem.DialogueManager.RemoveLuaObserver ( string  luaExpression,
LuaWatchFrequency  frequency,
LuaChangedDelegate  luaChangedHandler 
)
static

Removes a Lua expression observer.

To be removed, the expression, frequency, and notification delegate must all match.

Parameters
luaExpressionLua expression being watched.
frequencyFrequency that the expression is being watched.
luaChangedHandlerDelegate that's called when the expression changes.

◆ ResetDatabase()

static void PixelCrushers.DialogueSystem.DialogueManager.ResetDatabase ( DatabaseResetOptions  databaseResetOptions)
static

Resets the database to a default state.

Parameters
databaseResetOptionsAccepts the following values:
  • RevertToDefault: Restores the default database, removing any other databases that were added after startup.
  • KeepAllLoaded: Keeps all loaded databases in memory, but reverts them to their starting values.

◆ SendUpdateTracker()

static void PixelCrushers.DialogueSystem.DialogueManager.SendUpdateTracker ( )
static

Sends an "UpdateTracker" message to the Dialogue Manager, which may have a quest tracker component that listens for this message,

◆ SetDialogueSystemInput()

static void PixelCrushers.DialogueSystem.DialogueManager.SetDialogueSystemInput ( bool  value)
static

Enables or disables Dialogue System input.

Parameters
valueTrue to enable, false to disable.

◆ SetLanguage()

static void PixelCrushers.DialogueSystem.DialogueManager.SetLanguage ( string  language)
static

Sets the language to use for localized text.

Parameters
languageLanguage to use. Specify null or an emtpy string to use the default language.

◆ SetPortrait()

static void PixelCrushers.DialogueSystem.DialogueManager.SetPortrait ( string  actorName,
string  portraitName 
)
static

Sets an actor's portrait.

If can be:

  • 'default' or null to use the primary portrait defined in the database,
  • 'pic=#' to use an alternate portrait defined in the database (numbered from 2), or
  • the name of a texture in a Resources folder.
Parameters
actorNameActor name.
portraitNamePortrait name.

◆ ShowAlert() [1/2]

static void PixelCrushers.DialogueSystem.DialogueManager.ShowAlert ( string  message)
static

Shows an alert message using the dialogue UI for the UI's default duration.

Parameters
messageThe message to show.

◆ ShowAlert() [2/2]

static void PixelCrushers.DialogueSystem.DialogueManager.ShowAlert ( string  message,
float  duration 
)
static

Shows an alert message using the dialogue UI.

Parameters
messageThe message to show.
durationThe duration in seconds to show the message.

◆ StartConversation() [1/4]

static void PixelCrushers.DialogueSystem.DialogueManager.StartConversation ( string  title)
static

Starts the conversation with no transforms specified for the actor or conversant.

Parameters
titleThe title of the conversation to look up in the master database.

◆ StartConversation() [2/4]

static void PixelCrushers.DialogueSystem.DialogueManager.StartConversation ( string  title,
Transform  actor 
)
static

Starts a conversation, which also broadcasts an OnConversationStart message to the actor.

Your scripts can listen for OnConversationStart to do anything necessary at the beginning of a conversation, such as pausing other gameplay or temporarily disabling player control. See the Feature Demo scene, which uses the SetEnabledOnDialogueEvent component to disable player control during conversations.

Parameters
titleThe title of the conversation to look up in the master database.
actorThe transform of the actor (primary participant). The sequencer uses this to direct camera angles and perform other actions. In PC-NPC conversations, the actor is usually the PC.

◆ StartConversation() [3/4]

static void PixelCrushers.DialogueSystem.DialogueManager.StartConversation ( string  title,
Transform  actor,
Transform  conversant 
)
static

Starts a conversation, which also broadcasts an OnConversationStart message to the actor and conversant.

Your scripts can listen for OnConversationStart to do anything necessary at the beginning of a conversation, such as pausing other gameplay or temporarily disabling player control. See the Feature Demo scene, which uses the SetEnabledOnDialogueEvent component to disable player control during conversations.

Parameters
titleThe title of the conversation to look up in the master database.
actorThe transform of the actor (primary participant). The sequencer uses this to direct camera angles and perform other actions. In PC-NPC conversations, the actor is usually the PC.
conversantThe transform of the conversant (the other participant). The sequencer uses this to direct camera angles and perform other actions. In PC-NPC conversations, the conversant is usually the NPC.

StartConversation("Shopkeeper Conversation", player, shopkeeper);

◆ StartConversation() [4/4]

static void PixelCrushers.DialogueSystem.DialogueManager.StartConversation ( string  title,
Transform  actor,
Transform  conversant,
int  initialDialogueEntryID 
)
static

Starts a conversation, which also broadcasts an OnConversationStart message to the actor and conversant.

Your scripts can listen for OnConversationStart to do anything necessary at the beginning of a conversation, such as pausing other gameplay or temporarily disabling player control. See the Feature Demo scene, which uses the SetEnabledOnDialogueEvent component to disable player control during conversations.

Parameters
titleThe title of the conversation to look up in the master database.
actorThe transform of the actor (primary participant). The sequencer uses this to direct camera angles and perform other actions. In PC-NPC conversations, the actor is usually the PC.
conversantThe transform of the conversant (the other participant). The sequencer uses this to direct camera angles and perform other actions. In PC-NPC conversations, the conversant is usually the NPC.
initialDialogueEntryIDThe initial dialogue entry ID, or -1 to start from the beginning.

StartConversation("Shopkeeper Conversation", player, shopkeeper);

◆ StopConversation()

static void PixelCrushers.DialogueSystem.DialogueManager.StopConversation ( )
static

Stop the current conversation immediately, and sends an OnConversationEnd message to the actor and conversant.

Your scripts can listen for OnConversationEnd to do anything necessary at the end of a conversation, such as resuming other gameplay or re-enabling player control.

◆ StopSequence()

static void PixelCrushers.DialogueSystem.DialogueManager.StopSequence ( Sequencer  sequencer)
static

Stops a sequence.

Parameters
sequencerThe sequencer playing the sequence.

◆ Unpause()

static void PixelCrushers.DialogueSystem.DialogueManager.Unpause ( )
static

Unpauses the Dialogue System.

Also broadcasts OnDialogueSystemUnpause to the Dialogue Manager and conversation participants.

◆ UnregisterAssetBundle()

static void PixelCrushers.DialogueSystem.DialogueManager.UnregisterAssetBundle ( AssetBundle  bundle)
static

Unregisters an asset bundle from the Dialogue System.

Always unregister asset bundles before freeing them.

Parameters
bundleAsset bundle.

◆ UpdateResponses()

static void PixelCrushers.DialogueSystem.DialogueManager.UpdateResponses ( )
static

Updates the responses for the current state of the current conversation.

If the response menu entries' conditions have changed while the response menu is being shown, you can call this method to update the response menu.

◆ UseDialogueUI()

static void PixelCrushers.DialogueSystem.DialogueManager.UseDialogueUI ( GameObject  gameObject)
static

Sets the dialogue UI.

Parameters
gameObjectGame object containing an implementation of IDialogueUI.

Property Documentation

◆ AllowLuaExceptions

bool PixelCrushers.DialogueSystem.DialogueManager.AllowLuaExceptions
staticgetset

Gets or sets a value indicating whether exceptions in Lua code will be caught by the calling method or allowed to rise up to Unity.

Defaults to false.

true if Lua exceptions are allowed; otherwise, false.

◆ AllowSimultaneousConversations

bool PixelCrushers.DialogueSystem.DialogueManager.AllowSimultaneousConversations
staticget

Indicates whether more than one conversation can play at the same time.

true if simultaneous conversations are allowed; otherwise, false.

◆ ConversationController

ConversationController PixelCrushers.DialogueSystem.DialogueManager.ConversationController
staticget

◆ ConversationModel

ConversationModel PixelCrushers.DialogueSystem.DialogueManager.ConversationModel
staticget

◆ ConversationView

ConversationView PixelCrushers.DialogueSystem.DialogueManager.ConversationView
staticget

◆ CurrentActor

Transform PixelCrushers.DialogueSystem.DialogueManager.CurrentActor
staticget

Gets the current actor in the last conversation started (or null if no conversation is active or the last converstion started has ended).

The actor in the current conversation.

◆ CurrentConversant

Transform PixelCrushers.DialogueSystem.DialogueManager.CurrentConversant
staticget

Gets the current conversant in the last conversation started (or null if no conversation is active or the last conversation started has ended).

The conversant in the current conversation.

◆ CurrentConversationState

ConversationState PixelCrushers.DialogueSystem.DialogueManager.CurrentConversationState
staticget

Gets the current conversation state of the last conversation started (or null if no conversation is active or the last conversation started has ended).

The current conversation state.

◆ DatabaseManager

DatabaseManager PixelCrushers.DialogueSystem.DialogueManager.DatabaseManager
staticget

Gets the database manager.

The database manager.

◆ DebugLevel

DialogueDebug.DebugLevel PixelCrushers.DialogueSystem.DialogueManager.DebugLevel
staticgetset

Gets or sets the debug level.

The debug level.

◆ DialogueUI

IDialogueUI PixelCrushers.DialogueSystem.DialogueManager.DialogueUI
staticgetset

Gets the dialogue UI.

The dialogue UI.

◆ DisplaySettings

DisplaySettings PixelCrushers.DialogueSystem.DialogueManager.DisplaySettings
staticget

Gets the display settings.

The display settings.

◆ GetInputButtonDown

GetInputButtonDownDelegate PixelCrushers.DialogueSystem.DialogueManager.GetInputButtonDown
staticgetset

The GetInputButtonDown delegate.

Overrides calls to the standard Unity Input.GetButtonDown function.

◆ HasInstance

bool PixelCrushers.DialogueSystem.DialogueManager.HasInstance
staticget

Returns true if the singleton has found or created an instance.

true if has instance; otherwise, false.

◆ Instance

DialogueSystemController PixelCrushers.DialogueSystem.DialogueManager.Instance
staticget

Gets the instance of DialogueSystemController.

The instance.

◆ IsConversationActive

bool PixelCrushers.DialogueSystem.DialogueManager.IsConversationActive
staticget

Indicates whether a conversation is active.

true if a conversation is active; otherwise, false.

◆ IsDialogueEntryValid

IsDialogueEntryValidDelegate PixelCrushers.DialogueSystem.DialogueManager.IsDialogueEntryValid
staticgetset

The IsDialogueEntryValid delegate (if one is assigned).

This is an optional delegate that you can add to check if a dialogue entry is valid before allowing a conversation to use it. It should return true if the entry is valid.

◆ LastConversationID

int PixelCrushers.DialogueSystem.DialogueManager.LastConversationID
staticget

Gets the ID of the last conversation started.

◆ LastConversationStarted

string PixelCrushers.DialogueSystem.DialogueManager.LastConversationStarted
staticget

Gets the title of the last conversation started.

The title of the last conversation started.

◆ MasterDatabase

DialogueDatabase PixelCrushers.DialogueSystem.DialogueManager.MasterDatabase
staticget

Gets the master database.

The master database.


The documentation for this class was generated from the following file: