diff --git a/Framework/Editor/V0/AacFlConditions.cs b/Framework/Editor/V0/AacFlConditions.cs index 0e7838f..9142514 100644 --- a/Framework/Editor/V0/AacFlConditions.cs +++ b/Framework/Editor/V0/AacFlConditions.cs @@ -96,7 +96,7 @@ namespace AnimatorAsCode.V0 public List ToList() => _names.Select(AacFlBoolParameter.Internally).ToList(); public IAacFlCondition AreGreaterThan(float other) => ForEach(_names, (name, condition) => condition.Add(name, Greater, other)); - public IAacFlCondition AreLesserThan(float other) => ForEach(_names, (name, condition) => condition.Add(name, Less, other)); + public IAacFlCondition AreLessThan(float other) => ForEach(_names, (name, condition) => condition.Add(name, Less, other)); } public class AacFlIntParameterGroup @@ -107,7 +107,7 @@ namespace AnimatorAsCode.V0 public List ToList() => _names.Select(AacFlBoolParameter.Internally).ToList(); public IAacFlCondition AreGreaterThan(float other) => ForEach(_names, (name, condition) => condition.Add(name, Greater, other)); - public IAacFlCondition AreLesserThan(float other) => ForEach(_names, (name, condition) => condition.Add(name, Less, other)); + public IAacFlCondition AreLessThan(float other) => ForEach(_names, (name, condition) => condition.Add(name, Less, other)); public IAacFlCondition AreEqualTo(float other) => ForEach(_names, (name, condition) => condition.Add(name, AnimatorConditionMode.Equals, other)); public IAacFlCondition AreNotEqualTo(float other) => ForEach(_names, (name, condition) => condition.Add(name, NotEqual, other)); }