| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: YYL
|
| | | // [ Date ]: 2026年3月13日
|
| | | // [ Date ]: Tuesday, May 19, 2026
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using System.Collections.Generic;
|
| | |
| | | public int AudioID;
|
| | | public string Tachie;
|
| | | public float[] TachieParam;
|
| | | public int[] IsTachieFlip;
|
| | | public string SquareIcon;
|
| | | public string RectangleIcon;
|
| | | public string CardPic;
|
| | |
| | | } |
| | | }
|
| | |
|
| | | SquareIcon = tables[6];
|
| | | if (tables[6].Contains("[")) |
| | | { |
| | | IsTachieFlip = JsonMapper.ToObject<int[]>(tables[6]); |
| | | } |
| | | else |
| | | { |
| | | string[] IsTachieFlipStringArray = tables[6].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries); |
| | | IsTachieFlip = new int[IsTachieFlipStringArray.Length]; |
| | | for (int i=0;i<IsTachieFlipStringArray.Length;i++) |
| | | { |
| | | int.TryParse(IsTachieFlipStringArray[i],out IsTachieFlip[i]); |
| | | } |
| | | }
|
| | |
|
| | | RectangleIcon = tables[7];
|
| | | SquareIcon = tables[7];
|
| | |
|
| | | CardPic = tables[8];
|
| | | RectangleIcon = tables[8];
|
| | |
|
| | | SpineRes = tables[9];
|
| | | CardPic = tables[9];
|
| | |
|
| | | InitialSkinName = tables[10];
|
| | | SpineRes = tables[10];
|
| | |
|
| | | ApearMotionName = tables[11];
|
| | | InitialSkinName = tables[11];
|
| | |
|
| | | TransfMotionName = tables[12];
|
| | | ApearMotionName = tables[12];
|
| | |
|
| | | LoopMotionName = tables[13];
|
| | | TransfMotionName = tables[13];
|
| | |
|
| | | LoopMotionName = tables[14];
|
| | | }
|
| | | catch (Exception exception)
|
| | | {
|