| | |
| | | using System.Collections.Generic; |
| | | using UnityEngine; |
| | | using UnityEngine.UI; |
| | | using TableConfig; |
| | | |
| | | |
| | | public class LocalMapEventPointInstroduce : MonoBehaviour |
| | | { |
| | |
| | | |
| | | public void Display(int _id, Transform _target) |
| | | { |
| | | var config = ConfigManager.Instance.GetTemplate<TableConfig.MapEventPointConfig>(_id); |
| | | var config = MapEventPointConfig.Get(_id); |
| | | RecommondMinLv.text = config.LowLV.ToString(); |
| | | RecommondMaxLv.text = config.Defense.ToString(); |
| | | RecommondMinLv.color = PlayerDatas.Instance.baseData.LV < config.LowLV ? UIHelper.GetUIColor(TextColType.Red, false) : UIHelper.GetUIColor(TextColType.Green, false); |