Ejemplo n.º 1
0
    protected override void ApplyHitEffects(Alien alien)
    {
        SlowEffect efx = alien.gameObject.GetComponent <SlowEffect>();

        if (efx != null)
        {
            Object.Destroy(efx);
        }

        if (GameSession.Instance.isNetworkGame)
        {
            alien.slowDown(SlowTime, SlowRate);
        }
        SlowEffect fx = alien.gameObject.AddComponent <SlowEffect>();

        fx.Init(SlowTime, SlowRate);
    }
Ejemplo n.º 2
0
    void RPCSlow(float SlowTime, float SlowRate)
    {
        SlowEffect fx = gameObject.AddComponent <SlowEffect>();

        fx.Init(SlowTime, SlowRate);
    }