프로퍼티 | 타입 | 설명 | |
---|---|---|---|
defaultLanguage | string | ||
language | string |
메소드 | 설명 | |
---|---|---|
Awake ( ) : void | ||
ChangeLanguage ( string language ) : void |
Changes the language and tries to load it.
|
|
Clear ( ) : void |
Clear this instance and Destroys it
|
|
GetAudioClip ( string key ) : |
Gets the audio clip for the current language, returns null if nothing is found
|
|
GetCultureInfo ( string languageName ) : CultureInfo, |
Gets the culture info of the specified string languageName = strings like "en", "es", "sv"
|
|
GetLocalizedObjectDataBase ( ) : LocalizedObject>.Dictionary |
Gets the localized, clean and parsed object data base.
|
|
GetPrefab ( string key ) : GameObject |
Gets the prefab game object for the current language, returns null if nothing is found
|
|
GetSystemLanguage ( ) : string |
Gets the system language for this application using Application.systemLanguage If its SystemLanguage.Unknown, a string with the value "Unknown" will be returned
|
|
GetTextDataBase ( ) : string>.Dictionary |
Returns the entire RAW language database from the loaded language in a Dictionary it contains type keys and everything
|
|
GetTextValue ( string key ) : string |
Returns a text value in the current language for the key. Returns null if nothing is found.
|
|
GetTexture ( string key ) : Texture |
Gets the texture for the current language, returns null if nothing is found
|
|
IsLanguageSupported ( CultureInfo, cultureInfo ) : bool |
Checks if the language is supported by this application
|
|
IsLanguageSupported ( string languageName ) : bool |
Checks if the language is supported by this application languageName = strings like "en", "es", "sv"
|
|
OnDestroy ( ) : void | ||
SetDefaultLanguage ( CultureInfo, languageInfo ) : void |
Sets the default language. This language will be loaded in Awake() if it exists By default this is set to = "en"
|
|
SetDefaultLanguage ( string languageName ) : void |
Sets the default language. This language will be loaded in Awake() if it exists By default this is set to = "en"
|
|
addLanguageChangedListener ( ChangeLanguageEventHandler listener ) : void |
Adds the language changed listener to ChangeLanguageEventHandler.
|
|
removeLanguageChangedListener ( ChangeLanguageEventHandler listener ) : void |
Removes the language changed listener from ChangeLanguageEventHandler.
|
메소드 | 설명 | |
---|---|---|
GetAvailableLanguages ( ) : void |
Gets all the available languages.
|
|
GetLocalizedObject ( string key ) : LocalizedObject, |
Gets the localized object from the localizedObjectDataBase
|
|
LoadResources ( ) : void |
Loads the language file, language is specified with the language variable
|
|
ReadData ( XmlReader reader ) : void |
Reads a specific data tag from the xml document.
|
|
ReadElements ( XmlReader reader ) : void |
Reads the elements from the loaded xmldocument in LoadResources
|
public ChangeLanguage ( string language ) : void | ||
language | string | /// Language. /// |
리턴 | void |
public GetAudioClip ( string key ) : |
||
key | string | /// Key. /// |
리턴 |
public GetCultureInfo ( string languageName ) : CultureInfo, | ||
languageName | string | |
리턴 | CultureInfo, |
public GetLocalizedObjectDataBase ( ) : LocalizedObject>.Dictionary |
||
리턴 | LocalizedObject>.Dictionary |
public GetPrefab ( string key ) : GameObject | ||
key | string | /// Key. /// |
리턴 | GameObject |
public GetTextValue ( string key ) : string | ||
key | string | /// The Language Key. /// |
리턴 | string |
public IsLanguageSupported ( CultureInfo, cultureInfo ) : bool | ||
cultureInfo | CultureInfo, | |
리턴 | bool |
public IsLanguageSupported ( string languageName ) : bool | ||
languageName | string | |
리턴 | bool |
public SetDefaultLanguage ( CultureInfo, languageInfo ) : void | ||
languageInfo | CultureInfo, | |
리턴 | void |
public SetDefaultLanguage ( string languageName ) : void | ||
languageName | string | /// Language name. /// |
리턴 | void |
public addLanguageChangedListener ( ChangeLanguageEventHandler listener ) : void | ||
listener | ChangeLanguageEventHandler | Language changed listener. |
리턴 | void |
public removeLanguageChangedListener ( ChangeLanguageEventHandler listener ) : void | ||
listener | ChangeLanguageEventHandler | Language changed listener. |
리턴 | void |