| 12345678910111213141516171819202122232425 |
- using System.Collections.Generic;
- using MongoDB.Bson.Serialization.Attributes;
- namespace ET
- {
- // 玩家身上缓存竞技场套装数据
- // 登录加到玩家身上,下线移除,套装变化触发
- // 玩家卡牌数据,卡牌技能等级变化,物品属性变化,触发组件属性计算缓存,获取属性时触发计算
- public class RoleArenaComponent : Entity, IAwake, IDestroy, ITransfer, IDeserialize, IUnitCache
- {
- //缓存套装数据
- [BsonIgnore] public List<ArenaDressupProto> arenaDressupProto = new List<ArenaDressupProto>();
- [BsonIgnore] public List<int> themes = new List<int>(3);
- //是否变化过
- [BsonIgnore] public bool isChangeDress = false;
- //当前赛季最高段位
- public int HighGrade = 1;
- public int SeasonId = 0;
-
- }
- }
|