UnityToolbox
Brief documentation for all existing scripts.
 
Loading...
Searching...
No Matches
UnityToolbox.UI.UIEventManager Class Reference

This module manages all UI events and is required for almost all UI related scripts in this toolbox.

Inheritance diagram for UnityToolbox.UI.UIEventManager:
UnityToolbox.General.Management.Module

Public Member Functions

void MenuWheelPrevious ()
 Update the current MenuWheel item to the previous.
 
void MenuWheelNext ()
 Update the current MenuWheel item to the next.
 
void LanguagePrevious ()
 Update the current LanguageSetting item to the previous.
 
void LanguageNext ()
 Update the current LanguageSetting item to the next.
 
void LanguageUpdated (LocalizationLanguage language)
 Call to indicate that the language was updated.
 
void TogglePaused (bool isPaused, int typeID)
 Call to indicate that the.
 
void DialogNodeChanged (DialogNodeData currentNode)
 
void BindingKey (bool isBindingKey)
 
- Public Member Functions inherited from UnityToolbox.General.Management.Module
virtual void Awake ()
 

Events

Action OnMenuWheelPrevious
 Called once the MenuWheel should change its current item to the previous.
 
Action OnMenuWheelNext
 Called once the MenuWheel should change its current item to the next.
 
Action OnLanguagePrevious
 Called once the LanguageSetting should change its current item to the next.
 
Action OnLanguageNext
 Called once the LanguageSetting should change its current item to the next.
 
Action< LocalizationLanguageOnLanguageUpdated
 Called once the current language is updated.
 
Action< bool, int > OnTogglePaused
 Called once the game is paused by a menu. The int defines the menu type it is called from.
 
Action< DialogNodeDataOnDialogNodeChanged
 Called once the dialog node is changed.
 
Action< bool > OnBindingKey
 Called to update the current binding status. Required so that only one key is bound at a time.
 

Member Function Documentation

◆ BindingKey()

void UnityToolbox.UI.UIEventManager.BindingKey ( bool  isBindingKey)

◆ DialogNodeChanged()

void UnityToolbox.UI.UIEventManager.DialogNodeChanged ( DialogNodeData  currentNode)

◆ LanguageNext()

void UnityToolbox.UI.UIEventManager.LanguageNext ( )

◆ LanguagePrevious()

void UnityToolbox.UI.UIEventManager.LanguagePrevious ( )

◆ LanguageUpdated()

void UnityToolbox.UI.UIEventManager.LanguageUpdated ( LocalizationLanguage  language)
Parameters
languageThe new language.

References UnityToolbox.UI.UIEventManager.OnLanguageUpdated.

◆ MenuWheelNext()

void UnityToolbox.UI.UIEventManager.MenuWheelNext ( )

◆ MenuWheelPrevious()

void UnityToolbox.UI.UIEventManager.MenuWheelPrevious ( )

◆ TogglePaused()

void UnityToolbox.UI.UIEventManager.TogglePaused ( bool  isPaused,
int  typeID 
)
Parameters
isPaused
typeID

References UnityToolbox.UI.UIEventManager.OnTogglePaused.

Event Documentation

◆ OnBindingKey

Action<bool> UnityToolbox.UI.UIEventManager.OnBindingKey

◆ OnDialogNodeChanged

Action<DialogNodeData> UnityToolbox.UI.UIEventManager.OnDialogNodeChanged

◆ OnLanguageNext

Action UnityToolbox.UI.UIEventManager.OnLanguageNext

◆ OnLanguagePrevious

Action UnityToolbox.UI.UIEventManager.OnLanguagePrevious

◆ OnLanguageUpdated

Action<LocalizationLanguage> UnityToolbox.UI.UIEventManager.OnLanguageUpdated

◆ OnMenuWheelNext

Action UnityToolbox.UI.UIEventManager.OnMenuWheelNext

◆ OnMenuWheelPrevious

Action UnityToolbox.UI.UIEventManager.OnMenuWheelPrevious

◆ OnTogglePaused

Action<bool, int> UnityToolbox.UI.UIEventManager.OnTogglePaused