Fix Animator Removal constructor actually needs to be public:

- Animator Removal is used exclusively by destructive workflow extensions.
This commit is contained in:
Haï~
2024-08-18 19:42:49 +02:00
parent 27e4936445
commit c9c73155b9
@@ -713,7 +713,7 @@ namespace AnimatorAsCode.V1
{ {
private readonly AnimatorController _animatorController; private readonly AnimatorController _animatorController;
internal AacAnimatorRemoval(AnimatorController animatorController) [PublicAPI] public AacAnimatorRemoval(AnimatorController animatorController)
{ {
_animatorController = animatorController; _animatorController = animatorController;
} }