An easy to use Unity 3D library for creating illustrated Interactive Fiction games and more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

64 lines
2.1 KiB

// This code is part of the Fungus library (http://fungusgames.com) maintained by Chris Gregan (http://twitter.com/gofungus).
// It is released for free under the MIT open source license (https://github.com/snozbot/fungus/blob/master/LICENSE)
using UnityEngine;
using UnityEngine.Serialization;
namespace Fungus
{
/// <summary>
/// Set the active language for the scene. A Localization object with a localization file must be present in the scene.
/// </summary>
[CommandInfo("Narrative",
"Set Language",
"Set the active language for the scene. A Localization object with a localization file must be present in the scene.")]
[AddComponentMenu("")]
[ExecuteInEditMode]
public class SetLanguage : Command
{
[Tooltip("Code of the language to set. e.g. ES, DE, JA")]
[SerializeField] protected StringData _languageCode = new StringData();
public static string mostRecentLanguage = "";
public override void OnEnter()
{
Localization localization = GameObject.FindObjectOfType<Localization>();
if (localization != null)
{
localization.SetActiveLanguage(_languageCode.Value, true);
// Cache the most recently set language code so we can continue to
// use the same language in subsequent scenes.
mostRecentLanguage = _languageCode.Value;
}
Continue();
}
public override string GetSummary()
{
return _languageCode.Value;
}
public override Color GetButtonColor()
{
return new Color32(184, 210, 235, 255);
}
#region Backwards compatibility
[HideInInspector] [FormerlySerializedAs("languageCode")] public string languageCodeOLD = "";
protected virtual void OnEnable()
{
if (languageCodeOLD != "")
{
_languageCode.Value = languageCodeOLD;
languageCodeOLD = "";
}
}
#endregion
}
}