From 207d94cf307fc543985857614f7c196629f36510 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=C3=AF=7E?= Date: Wed, 13 Sep 2023 04:25:27 +0200 Subject: [PATCH] Rename AacFlController.CreateLayer to AacFlController.NewLayer --- Framework/Editor/V1/Aac.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Framework/Editor/V1/Aac.cs b/Framework/Editor/V1/Aac.cs index 924004c..aa3359a 100644 --- a/Framework/Editor/V1/Aac.cs +++ b/Framework/Editor/V1/Aac.cs @@ -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