Exemple #1
0
        protected override void Apply(GameObject obj)
        {
            BombInstaller installer = obj.GetComponentInChildren <BombInstaller>();

            if (installer != null)
            {
                installer.AddRadiusExplosion(additionalRadius);
            }
        }
Exemple #2
0
        protected override void Apply(GameObject obj)
        {
            BombInstaller installer = obj.GetComponentInChildren <BombInstaller>();

            if (installer != null)
            {
                installer.bombLimit += count;
            }
        }