コード例 #1
0
        public static void LoadLogSettingsIntoDictionary()
        {
            LogSettingsSO settings = FindLogSettings();

            if (settings != null)
            {
                settings.LoadIntoLogFactory();
            }
        }
コード例 #2
0
 private void RefreshDictionary()
 {
     if (_settings != null)
     {
         _settings.LoadIntoLogFactory();
     }
     else
     {
         Debug.LogWarning("Log settings component does not have a settings reference", this);
     }
 }