public static void ReloadTentacleConfig(ICoreConfig config) { var a = ConfigBase.LoadConfig(ConfigVars.CONFIG_EVALUATOR_FILE_PATH, false); //config.Evaluator = ConfigBase.LoadConfig(ConfigVars.CONFIG_EVALUATOR_FILE_PATH, false); //if (config.Evaluator == null) throw new ConfigEvaluatorError(); Debug.WriteLine(1); }
protected virtual void Reload() { config_current = ConfigBase <T> .LoadConfig <ConfigBase <T> >(configSetting.LoadPath); Debug.Log(configSetting.LoadPath); if (config_current == null) { config_current = new ConfigBase <T>(); } deleteList.Clear(); }
protected virtual void Reload() { AssetDatabase.Refresh(); FieldsOrder = new Dictionary <string, bool>(); config_current = ConfigBase <T> .LoadConfig <ConfigBase <T> >(configSetting.Setting.LoadPath); if (config_current == null) { config_current = new ConfigBase <T>(); } deleteList.Clear(); ReloadOutLinkChache(); }