Exemplo n.º 1
0
 public void GetConfigs(string category, IList <ConfigIni> configs)
 {
     GetConfigs(category, ConfigHierarchyLevelRange.All(), configs);
 }
Exemplo n.º 2
0
 /// <inheritdoc cref="EvaluatePropertyValues(string,string,string,string,ConfigHierarchyLevelRange,UE4Config.Evaluation.PropertyEvaluator,System.Collections.Generic.IList{string})"/>
 public void EvaluatePropertyValues(string platform, string category, string sectionName, string propertyKey, PropertyEvaluator evaluator, IList <string> values)
 {
     EvaluatePropertyValues(platform, category, sectionName, propertyKey, ConfigHierarchyLevelRange.All(),
                            evaluator, values);
 }
Exemplo n.º 3
0
 /// <inheritdoc cref="EvaluatePropertyValues(string,string,string,string,UE4Config.Evaluation.PropertyEvaluator,System.Collections.Generic.IList{string})"/>
 /// <remarks>
 /// Uses "Default" platform
 /// Uses <see cref="PropertyEvaluator.Default"/> as evaluator
 /// </remarks>
 public void EvaluatePropertyValues(string category, string sectionName, string propertyKey, IList <string> values)
 {
     EvaluatePropertyValues(category, sectionName, propertyKey, ConfigHierarchyLevelRange.All(), values);
 }