From c9c73155b95b5b87bd03e78494aba1b9f6f061bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=C3=AF=7E?= Date: Sun, 18 Aug 2024 19:42:22 +0200 Subject: [PATCH] Fix Animator Removal constructor actually needs to be public: - Animator Removal is used exclusively by destructive workflow extensions. --- Packages/dev.hai-vr.animator-as-code.v1/V1/Editor/Aac.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Packages/dev.hai-vr.animator-as-code.v1/V1/Editor/Aac.cs b/Packages/dev.hai-vr.animator-as-code.v1/V1/Editor/Aac.cs index 4a142c3..f41dd6c 100644 --- a/Packages/dev.hai-vr.animator-as-code.v1/V1/Editor/Aac.cs +++ b/Packages/dev.hai-vr.animator-as-code.v1/V1/Editor/Aac.cs @@ -713,7 +713,7 @@ namespace AnimatorAsCode.V1 { private readonly AnimatorController _animatorController; - internal AacAnimatorRemoval(AnimatorController animatorController) + [PublicAPI] public AacAnimatorRemoval(AnimatorController animatorController) { _animatorController = animatorController; }