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