Sanguosha.UI.Controls.MainPlayerView.Update C# (CSharp) Méthode

Update() public méthode

public Update ( ) : void
Résultat void
        public override void Update()
        {
            // Update death status
            deathIcon.BeginAnimation(Image.OpacityProperty, null);
            deathIcon.Opacity = PlayerModel.IsDead ? 1.0d : 0.0d;
            deathEffect.BeginAnimation(Effects.MonochromeEffect.StrengthProperty, null);
            deathEffect.Strength = PlayerModel.IsDead ? 1.0d : 0.0d;

            // Update impersonate status
            UpdateImpersonateStatus(true);
            if (PlayerModel != null &&
                PlayerModel.Hero2Model != null &&
                PlayerModel.Hero2Model.Hero != null)
            {
                UpdateImpersonateStatus(false);
            }

            // Update cards
            UpdateCards();
        }