yyl
2026-03-04 bc1cb6da854cb2e9144f10ed55330a537ecdca16
Main/System/Battle/UIComp/BossHeadCell.cs
@@ -23,7 +23,14 @@
        }
        HeroSkinConfig heroSkinConfig = teamHero.skinConfig;
        imgIcon.sprite = UILoader.LoadSprite("HeroHead", heroSkinConfig.SquareIcon);
        UILoader.LoadSpriteAsync("HeroHead", heroSkinConfig.SquareIcon).ContinueWith(sprite =>
        {
            if (imgIcon == null || this == null)
            {
                return;
            }
            imgIcon.sprite = sprite;
        }).Forget();
        txtLv.text = Language.Get("Arena22", teamHero.level);
        // TODO YYL