private bool AnyOfTheseAnimatorsActive()
{
if (animator.GetBool("Mini Bomb Particle System") || animator.GetBool("Lightning Particle System") || animator.GetBool("Gold Shockwave Particle System"))
{
return true;
}
else
{
return false;
}
}

Leave a Reply