yyl
4 小时以前 073d737eca624884fec4d43c5d3f41355cdbeb72
Main/System/Horse/HorseManager.cs
@@ -66,17 +66,26 @@
    public int GetHorseSkinID()
    {
        return (int)PlayerDatas.Instance.baseData.equipShowSwitch%100;
        return (int)PlayerDatas.Instance.baseData.equipShowSwitch%1000;
    }
    public void UpdateHorseInfo(HA303_tagSCHorseClassInfo netPack)
    {
        bool isOpenSuccess = false;
        if (classLV != netPack.ClassLV && DTC0403_tagPlayerLoginLoadOK.finishedLogin)
        {
            isOpenSuccess = true;
        }
        classLV = netPack.ClassLV;
        horseLV = netPack.HorseLV;
        exp = netPack.Exp;
        UpdateRedpoint();
        RefreshAttr();
        OnHorseUpdateEvent?.Invoke();
        if (isOpenSuccess)
        {
            UIManager.Instance.OpenWindow<HorseSuccessWin>();
        }
    }