{
foreach (var call in calls)
if(Debug.isDebugBuild || Application.isEditor)
Debug.Log($"Callable : {call.gameObject.name} :> {call.GetType().Name} ({call.Name})");
if(call != null)
call.Execute(instigator);
else