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);
        }
Exemple #2
0
        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();
        }
Exemple #3
0
        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();
        }