Rename AacFlController.CreateLayer to AacFlController.NewLayer

This commit is contained in:
Haï~
2023-10-02 04:53:27 +02:00
parent 0e15f255b3
commit 207d94cf30
+2 -2
View File
@@ -453,8 +453,8 @@ namespace AnimatorAsCode.V1
_base = originalBase;
}
public AacFlLayer CreateLayer(string suffix) => _base.DoCreateLayerWithoutDeleting(AnimatorController, _configuration.DefaultsProvider.ConvertLayerNameWithSuffix(_configuration.SystemName, suffix));
public AacFlLayer CreateLayer() => _base.DoCreateLayerWithoutDeleting(AnimatorController, _configuration.SystemName);
public AacFlLayer NewLayer(string suffix) => _base.DoCreateLayerWithoutDeleting(AnimatorController, _configuration.DefaultsProvider.ConvertLayerNameWithSuffix(_configuration.SystemName, suffix));
public AacFlLayer NewLayer() => _base.DoCreateLayerWithoutDeleting(AnimatorController, _configuration.SystemName);
}
public class AacAnimatorRemoval