| | |
| | | //-------------------------------------------------------- |
| | | // [Author]: 第二世界 |
| | | // [ Date ]: Tuesday, September 11, 2018 |
| | | // [ Date ]: Wednesday, September 12, 2018 |
| | | //-------------------------------------------------------- |
| | | |
| | | using UnityEngine; |
| | |
| | | public string Icon { get ; private set; }
|
| | | public string Content { get ; private set; }
|
| | | public int DisplayLevel { get ; private set ; }
|
| | | public int Display { get ; private set ; } |
| | | public int Display { get ; private set ; }
|
| | | public int RedPointLV { get ; private set ; }
|
| | | public int RedPointPercentage { get ; private set ; }
|
| | | public int FrameLevel { get ; private set ; } |
| | | |
| | | public override string getKey() |
| | | { |
| | |
| | |
|
| | | DisplayLevel=IsNumeric(rawContents[9]) ? int.Parse(rawContents[9]):0;
|
| | |
|
| | | Display=IsNumeric(rawContents[10]) ? int.Parse(rawContents[10]):0; |
| | | Display=IsNumeric(rawContents[10]) ? int.Parse(rawContents[10]):0; |
| | | |
| | | RedPointLV=IsNumeric(rawContents[11]) ? int.Parse(rawContents[11]):0; |
| | | |
| | | RedPointPercentage=IsNumeric(rawContents[12]) ? int.Parse(rawContents[12]):0; |
| | | |
| | | FrameLevel=IsNumeric(rawContents[13]) ? int.Parse(rawContents[13]):0; |
| | | } |
| | | catch (Exception ex) |
| | | { |