| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: YYL
|
| | | // [ Date ]: 2026年3月11日
|
| | | // [ Date ]: 2026年3月13日
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using System.Collections.Generic;
|
| | |
| | | public int SkinID;
|
| | | public string SkinName;
|
| | | public string BG;
|
| | | public int Quality;
|
| | | public int AudioID;
|
| | | public string Tachie;
|
| | | public float[] TachieParam;
|
| | |
| | |
|
| | | BG = tables[2];
|
| | |
|
| | | int.TryParse(tables[3],out Quality); |
| | | int.TryParse(tables[3],out AudioID); |
| | |
|
| | | int.TryParse(tables[4],out AudioID); |
| | | Tachie = tables[4];
|
| | |
|
| | | Tachie = tables[5];
|
| | |
|
| | | if (tables[6].Contains("[")) |
| | | if (tables[5].Contains("[")) |
| | | { |
| | | TachieParam = JsonMapper.ToObject<float[]>(tables[6]); |
| | | TachieParam = JsonMapper.ToObject<float[]>(tables[5]); |
| | | } |
| | | else |
| | | { |
| | | string[] TachieParamStringArray = tables[6].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[7];
|
| | | SquareIcon = tables[6];
|
| | |
|
| | | RectangleIcon = tables[8];
|
| | | RectangleIcon = tables[7];
|
| | |
|
| | | CardPic = tables[9];
|
| | | CardPic = tables[8];
|
| | |
|
| | | SpineRes = tables[10];
|
| | | SpineRes = tables[9];
|
| | |
|
| | | InitialSkinName = tables[11];
|
| | | InitialSkinName = tables[10];
|
| | |
|
| | | ApearMotionName = tables[12];
|
| | | ApearMotionName = tables[11];
|
| | |
|
| | | TransfMotionName = tables[13];
|
| | | TransfMotionName = tables[12];
|
| | |
|
| | | LoopMotionName = tables[14];
|
| | | LoopMotionName = tables[13];
|
| | | }
|
| | | catch (Exception exception)
|
| | | {
|