| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: YYL
|
| | | // [ Date ]: 2025年8月19日
|
| | | // [ Date ]: Thursday, August 21, 2025
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using System.Collections.Generic;
|
| | |
| | | public string packageName;
|
| | | public int isSpine;
|
| | | public string fxName;
|
| | | public int animIndex;
|
| | | public int[] animIndex;
|
| | | public int audio;
|
| | | public string nodeName;
|
| | | public int notShow;
|
| | |
| | |
|
| | | fxName = tables[3];
|
| | |
|
| | | int.TryParse(tables[4],out animIndex); |
| | | if (tables[4].Contains("[")) |
| | | { |
| | | animIndex = JsonMapper.ToObject<int[]>(tables[4]); |
| | | } |
| | | else |
| | | { |
| | | string[] animIndexStringArray = tables[4].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries); |
| | | animIndex = new int[animIndexStringArray.Length]; |
| | | for (int i=0;i<animIndexStringArray.Length;i++) |
| | | { |
| | | int.TryParse(animIndexStringArray[i],out animIndex[i]); |
| | | } |
| | | }
|
| | |
|
| | | int.TryParse(tables[5],out audio);
|
| | |
|