From 9ba8fa3520022514c8d6c132d39933b200d54d00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=C3=AF=7E?= Date: Sun, 27 Feb 2022 23:28:46 +0100 Subject: [PATCH] Rename AreLesserThan to AreLessThan (Breaking): - Breaking change: Rename AreLesserThan to AreLessThan, to match the singular counterparts --- Framework/Editor/V0/AacFlConditions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)); }