| | |
| | | //-------------------------------------------------------- |
| | | // [Author]: 第二世界 |
| | | // [ Date ]: Thursday, June 21, 2018 |
| | | // [ Date ]: Saturday, August 11, 2018 |
| | | //-------------------------------------------------------- |
| | | |
| | | using UnityEngine; |
| | |
| | | public int[] Steps;
|
| | | public int CanSkip { get ; private set ; }
|
| | | public int RemoveWhenOtherGuide { get ; private set ; }
|
| | | public int CannotCompleteByClick { get ; private set ; }
|
| | | |
| | | public override string getKey()
|
| | | {
|
| | |
| | | CanSkip=IsNumeric(rawContents[6]) ? int.Parse(rawContents[6]):0;
|
| | |
|
| | | RemoveWhenOtherGuide=IsNumeric(rawContents[7]) ? int.Parse(rawContents[7]):0;
|
| | | |
| | | CannotCompleteByClick=IsNumeric(rawContents[8]) ? int.Parse(rawContents[8]):0; |
| | | }
|
| | | catch (Exception ex)
|
| | | {
|