示例#1
0
    protected virtual void Hit(BHealth _other)
    {
        if (stats.m_ExplosionRadius == 0)
        {
            if (_other)
            {
                if (_other.transform != m_Instigator)
                {
                    _other.TakeDamage(stats.m_Damage);
                }
            }
        }

        DestroyProjectile();
    }