From cf58771365b5953c6eac548b172aae880d1f0acd Mon Sep 17 00:00:00 2001 From: chai <215380520@qq.com> Date: Sun, 19 May 2024 17:03:57 +0800 Subject: * rename --- .../Decompile/I2.Loc/LocalizationParamsManager.cs | 97 ---------------------- 1 file changed, 97 deletions(-) delete mode 100644 Thronefall_1_57/Decompile/I2.Loc/LocalizationParamsManager.cs (limited to 'Thronefall_1_57/Decompile/I2.Loc/LocalizationParamsManager.cs') diff --git a/Thronefall_1_57/Decompile/I2.Loc/LocalizationParamsManager.cs b/Thronefall_1_57/Decompile/I2.Loc/LocalizationParamsManager.cs deleted file mode 100644 index 2690bf1..0000000 --- a/Thronefall_1_57/Decompile/I2.Loc/LocalizationParamsManager.cs +++ /dev/null @@ -1,97 +0,0 @@ -using System; -using System.Collections.Generic; -using UnityEngine; - -namespace I2.Loc; - -public class LocalizationParamsManager : MonoBehaviour, ILocalizationParamsManager -{ - [Serializable] - public struct ParamValue - { - public string Name; - - public string Value; - } - - [SerializeField] - public List _Params = new List(); - - public bool _IsGlobalManager; - - public string GetParameterValue(string ParamName) - { - if (_Params != null) - { - int i = 0; - for (int count = _Params.Count; i < count; i++) - { - if (_Params[i].Name == ParamName) - { - return _Params[i].Value; - } - } - } - return null; - } - - public void SetParameterValue(string ParamName, string ParamValue, bool localize = true) - { - bool flag = false; - int i = 0; - for (int count = _Params.Count; i < count; i++) - { - if (_Params[i].Name == ParamName) - { - ParamValue value = _Params[i]; - value.Value = ParamValue; - _Params[i] = value; - flag = true; - break; - } - } - if (!flag) - { - _Params.Add(new ParamValue - { - Name = ParamName, - Value = ParamValue - }); - } - if (localize) - { - OnLocalize(); - } - } - - public void OnLocalize() - { - Localize component = GetComponent(); - if (component != null) - { - component.OnLocalize(Force: true); - } - } - - public virtual void OnEnable() - { - if (_IsGlobalManager) - { - DoAutoRegister(); - } - } - - public void DoAutoRegister() - { - if (!LocalizationManager.ParamManagers.Contains(this)) - { - LocalizationManager.ParamManagers.Add(this); - LocalizationManager.LocalizeAll(Force: true); - } - } - - public void OnDisable() - { - LocalizationManager.ParamManagers.Remove(this); - } -} -- cgit v1.1-26-g67d0