테이블 2종 추가
This commit is contained in:
parent
2ae7c918f9
commit
829a7b9806
File diff suppressed because one or more lines are too long
|
|
@ -1,26 +1 @@
|
|||
[
|
||||
{
|
||||
"n_CostumeID": "코스튬ID",
|
||||
"s_Image": "일러스트",
|
||||
"s_Prefab": "프리팹",
|
||||
"exception": "참고용 텍스트"
|
||||
},
|
||||
{
|
||||
"n_CostumeID": "110001",
|
||||
"s_Image": "01 Ai 01",
|
||||
"s_Prefab": "Ai01",
|
||||
"exception": "아이 교복"
|
||||
},
|
||||
{
|
||||
"n_CostumeID": "110002",
|
||||
"s_Image": "01 Ai 02",
|
||||
"s_Prefab": "Ai02",
|
||||
"exception": "아이 비키니"
|
||||
},
|
||||
{
|
||||
"n_CostumeID": "110003",
|
||||
"s_Image": "01 Ai 03",
|
||||
"s_Prefab": "Ai03",
|
||||
"exception": "아이 파자마"
|
||||
}
|
||||
]
|
||||
[{"n_CostumeID": "코스튬ID", "s_Image": "일러스트", "s_Prefab": "프리팹", "exception": "참고용 텍스트"}, {"n_CostumeID": "110001", "s_Image": "01 Ai 01", "s_Prefab": "Ai01", "exception": "아이 교복"}, {"n_CostumeID": "110002", "s_Image": "01 Ai 02", "s_Prefab": "Ai02", "exception": "아이 비키니"}, {"n_CostumeID": "110003", "s_Image": "01 Ai 03", "s_Prefab": "Ai03", "exception": "아이 파자마"}]
|
||||
|
|
@ -1,20 +1 @@
|
|||
[
|
||||
{
|
||||
"exception": "참고용 텍스트",
|
||||
"n_CollectionName": "컬렉션 이름",
|
||||
"n_CostumeID1": "코스튬ID1",
|
||||
"n_CostumeID2": "코스튬ID2",
|
||||
"n_CostumeID3": "코스튬ID3",
|
||||
"e_Stat": "능력치",
|
||||
"n_StatValue": "능력치 상승값"
|
||||
},
|
||||
{
|
||||
"exception": "아이 3종",
|
||||
"n_CollectionName": "101101",
|
||||
"n_CostumeID1": "110001",
|
||||
"n_CostumeID2": "110002",
|
||||
"n_CostumeID3": "110003",
|
||||
"e_Stat": "STR",
|
||||
"n_StatValue": "5"
|
||||
}
|
||||
]
|
||||
[{"exception": "참고용 텍스트", "n_CollectionName": "컬렉션 이름", "n_CostumeID1": "코스튬ID1", "n_CostumeID2": "코스튬ID2", "n_CostumeID3": "코스튬ID3", "e_Stat": "능력치", "n_StatValue": "능력치 상승값"}, {"exception": "아이 3종", "n_CollectionName": "101101", "n_CostumeID1": "110001", "n_CostumeID2": "110002", "n_CostumeID3": "110003", "e_Stat": "STR", "n_StatValue": "5"}]
|
||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
|
@ -95,10 +95,10 @@ public class table_missionbase : MonoBehaviour
|
|||
}
|
||||
protected void Set_lastjson2()
|
||||
{
|
||||
// TODO 정인호 : 임의로 만든 json 파일 오류 처리 (정식에선 지워야함)
|
||||
int startIndex = json_last.IndexOf(","); // 첫 번째 객체 시작
|
||||
int endIndex = json_last.IndexOf(",") + 1; // 첫 번째 객체 끝
|
||||
json_last = json_last.Remove(startIndex, endIndex - startIndex);
|
||||
//// TODO 정인호 : 임의로 만든 json 파일 오류 처리 (정식에선 지워야함)
|
||||
//int startIndex = json_last.IndexOf(","); // 첫 번째 객체 시작
|
||||
//int endIndex = json_last.IndexOf(",") + 1; // 첫 번째 객체 끝
|
||||
//json_last = json_last.Remove(startIndex, endIndex - startIndex);
|
||||
}
|
||||
protected virtual void Start() { LoadComplete = true; }
|
||||
public bool Get_LoadComplete() { return LoadComplete; }
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ public class CostumeListTableData : TableDataBase
|
|||
{
|
||||
get { return _CostumeID; }
|
||||
set { _CostumeID = value; _CostumeID.RandomizeCryptoKey(); }
|
||||
} // 클래스 ID
|
||||
} // 클래스 ID
|
||||
|
||||
public string s_Image, s_Prefab;
|
||||
|
||||
|
|
@ -28,7 +28,6 @@ public class table_costumelist : table_missionbase
|
|||
{
|
||||
base.Awake();
|
||||
Ins = this;
|
||||
Set_lastjson2();
|
||||
}
|
||||
|
||||
protected override void Start()
|
||||
|
|
|
|||
|
|
@ -55,7 +55,6 @@ public class table_pccostumecollectionlist : table_missionbase
|
|||
{
|
||||
base.Awake();
|
||||
Ins = this;
|
||||
Set_lastjson2();
|
||||
}
|
||||
|
||||
protected override void Start()
|
||||
|
|
|
|||
Loading…
Reference in New Issue