Esempio n. 1
0
        private void UpdateFourthFertilizer(object source, FertilizerEventArgs args)
        {
            bool ApplyAnimation = false;

            if (args.Amount <= 4)
            {
                ApplyAnimation = true;
            }
            Dispatch(() => {
                if (ApplyAnimation)
                {
                    ANIM_FERTILIZER_EXPIRE.Begin(fert4Counter, true);
                    ANIM_FERTILIZER_EXPIRE.Begin(fert4Name, true);
                }
                else
                {
                    ANIM_FERTILIZER_EXPIRE.Remove(fert4Counter);
                    ANIM_FERTILIZER_EXPIRE.Remove(fert4Name);
                }
                this.fert4Name.Content    = args.Name;
                this.fert4Counter.Content = $"x{args.Amount}";
            });
        }
Esempio n. 2
0
        protected virtual void _onAmountUpdate()
        {
            FertilizerEventArgs args = new FertilizerEventArgs(this);

            OnAmountUpdate?.Invoke(this, args);
        }
Esempio n. 3
0
        protected virtual void _onFertilizerChange()
        {
            FertilizerEventArgs args = new FertilizerEventArgs(this);

            OnFertilizerChange?.Invoke(this, args);
        }