| | |
| | | //-------------------------------------------------------- |
| | | // [Author]: YYL |
| | | // [ Date ]: Friday, June 27, 2025 |
| | | // [ Date ]: 2025年7月22日 |
| | | //-------------------------------------------------------- |
| | | |
| | | using System.Collections.Generic; |
| | |
| | | |
| | | public int id; |
| | | public string packageName; |
| | | public int isSpine; |
| | | public string fxName; |
| | | public int job; |
| | | public int audio; |
| | | public int stopImmediate; |
| | | public int setParent; |
| | | public string nodeName; |
| | | public int notShow; |
| | | public int autoDestroy; |
| | | public float destroyDelay; |
| | | |
| | | public override int LoadKey(string _key) |
| | | { |
| | |
| | | |
| | | packageName = tables[1]; |
| | | |
| | | fxName = tables[2]; |
| | | int.TryParse(tables[2],out isSpine); |
| | | |
| | | int.TryParse(tables[3],out job); |
| | | fxName = tables[3]; |
| | | |
| | | int.TryParse(tables[4],out audio); |
| | | |
| | | int.TryParse(tables[5],out stopImmediate); |
| | | nodeName = tables[5]; |
| | | |
| | | int.TryParse(tables[6],out setParent); |
| | | int.TryParse(tables[6],out notShow); |
| | | |
| | | nodeName = tables[7]; |
| | | int.TryParse(tables[7],out autoDestroy); |
| | | |
| | | int.TryParse(tables[8],out notShow); |
| | | float.TryParse(tables[8],out destroyDelay); |
| | | } |
| | | catch (Exception exception) |
| | | { |