Initial Commit
This commit is contained in:
+28
@@ -0,0 +1,28 @@
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Zenject
|
||||
{
|
||||
public class AnimatorMoveHandlerManager : MonoBehaviour
|
||||
{
|
||||
List<IAnimatorMoveHandler> _handlers;
|
||||
|
||||
[Inject]
|
||||
public void Construct(
|
||||
// Use local to avoid inheriting handlers from a parent context
|
||||
[Inject(Source = InjectSources.Local)]
|
||||
List<IAnimatorMoveHandler> handlers)
|
||||
{
|
||||
_handlers = handlers;
|
||||
}
|
||||
|
||||
public void OnAnimatorMove()
|
||||
{
|
||||
foreach (var handler in _handlers)
|
||||
{
|
||||
handler.OnAnimatorMove();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user