Skip to content

Commit 903abe1

Browse files
committed
[修改]1. 修改配置表导出更新
1 parent 93a602b commit 903abe1

16 files changed

+68
-210
lines changed

Assets/Bundles/Config/item_tbachievement.json

Lines changed: 0 additions & 172 deletions
This file was deleted.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
[
2+
{
3+
"id": 90000001,
4+
"image": 6230001,
5+
"name": "text_achievement_name_01",
6+
"achievement_content": "text_achievement_content_1",
7+
"LockText": "text_achievement_cover",
8+
"achievement_unlock_condition": [
9+
10001
10+
]
11+
},
12+
{
13+
"id": 90000002,
14+
"image": 6230002,
15+
"name": "text_achievement_name_02",
16+
"achievement_content": "text_achievement_content_2",
17+
"LockText": "text_achievement_cover",
18+
"achievement_unlock_condition": [
19+
10002
20+
]
21+
}
22+
]

Assets/Bundles/Config/item_tbachievement.json.meta renamed to Assets/Bundles/Config/tables_tbachievement.json.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Bundles/Config/item_tbsounds.json renamed to Assets/Bundles/Config/tables_tbsounds.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,55 +4,55 @@
44
"groupName": "BGM",
55
"path": "BGM/voice_bgm_lobby.mp3",
66
"title": "",
7-
"characterName": "6400001"
7+
"characterName": ""
88
},
99
{
1010
"id": 6400002,
1111
"groupName": "Effect",
1212
"path": "Effect/voice_effect_lingdang.wav",
13-
"title": "effect_lingdang",
13+
"title": "",
1414
"characterName": ""
1515
},
1616
{
1717
"id": 6400003,
1818
"groupName": "BGM",
1919
"path": "BGM/voice_bgm_chenguang.mp3",
20-
"title": "BGM_chengguang",
20+
"title": "",
2121
"characterName": ""
2222
},
2323
{
2424
"id": 6400004,
2525
"groupName": "BGM",
2626
"path": "BGM/voice_bgm_yibian.mp3",
27-
"title": "BGM_yingbian",
27+
"title": "",
2828
"characterName": ""
2929
},
3030
{
3131
"id": 6400005,
3232
"groupName": "BGM",
3333
"path": "BGM/voice_bgm_yingxin.mp3",
34-
"title": "BGM_ying",
34+
"title": "",
3535
"characterName": ""
3636
},
3737
{
3838
"id": 6400027,
3939
"groupName": "Vocal",
4040
"path": "Vocal/character_qianxia_chapter_1_youqingzhigui_1.wav",
41-
"title": "character_qianxia_chapter_1_youqingzhigui_1",
42-
"characterName": "7200001"
41+
"title": "",
42+
"characterName": ""
4343
},
4444
{
4545
"id": 6400028,
4646
"groupName": "Vocal",
4747
"path": "Vocal/character_qianxia_chapter_1_youqingzhigui_2.wav",
48-
"title": "character_qianxia_chapter_1_youqingzhigui_2",
49-
"characterName": "7200001"
48+
"title": "",
49+
"characterName": ""
5050
},
5151
{
5252
"id": 6400029,
5353
"groupName": "Vocal",
5454
"path": "Vocal/character_qianxia_chapter_1_youqingzhigui_3.wav",
55-
"title": "character_qianxia_chapter_1_youqingzhigui_3",
56-
"characterName": "7200001"
55+
"title": "",
56+
"characterName": ""
5757
}
5858
]

Assets/Bundles/Config/item_tbsounds.json.meta renamed to Assets/Bundles/Config/tables_tbsounds.json.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Hotfix/Config/Generate/Tables.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Hotfix/Config/Generate/item/Achievement.cs renamed to Assets/Hotfix/Config/Generate/Tables/Achievement.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using GameFrameX.Config;
1212
using SimpleJSON;
1313

14-
namespace Hotfix.Config.item
14+
namespace Hotfix.Config.Tables
1515
{
1616
public sealed partial class Achievement : LuBan.Runtime.BeanBase
1717
{
@@ -45,7 +45,7 @@ public Achievement(JSONNode _buf)
4545

4646
public static Achievement DeserializeAchievement(JSONNode _buf)
4747
{
48-
return new item.Achievement(_buf);
48+
return new Tables.Achievement(_buf);
4949
}
5050

5151
/// <summary>
@@ -84,7 +84,7 @@ public static Achievement DeserializeAchievement(JSONNode _buf)
8484
/// 成就解锁条件
8585
/// </summary>
8686
public System.Collections.Generic.List<int> AchievementUnlockCondition { private set; get; }
87-
public const int __ID__ = 336225460;
87+
public const int __ID__ = -1048610522;
8888
public override int GetTypeId() => __ID__;
8989

9090
public void ResolveRef(TablesComponent tables)

Assets/Hotfix/Config/Generate/item/Achievement.cs.meta renamed to Assets/Hotfix/Config/Generate/Tables/Achievement.cs.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/Hotfix/Config/Generate/item/Sounds.cs renamed to Assets/Hotfix/Config/Generate/Tables/Sounds.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using GameFrameX.Config;
1212
using SimpleJSON;
1313

14-
namespace Hotfix.Config.item
14+
namespace Hotfix.Config.Tables
1515
{
1616
public sealed partial class Sounds : LuBan.Runtime.BeanBase
1717
{
@@ -42,7 +42,7 @@ public Sounds(JSONNode _buf)
4242

4343
public static Sounds DeserializeSounds(JSONNode _buf)
4444
{
45-
return new item.Sounds(_buf);
45+
return new Tables.Sounds(_buf);
4646
}
4747

4848
/// <summary>
@@ -67,7 +67,7 @@ public static Sounds DeserializeSounds(JSONNode _buf)
6767
public readonly string Title_Localization_Key;
6868
public string CharacterName { private set; get; }
6969
public readonly string CharacterName_Localization_Key;
70-
public const int __ID__ = -1840749409;
70+
public const int __ID__ = 2052116717;
7171
public override int GetTypeId() => __ID__;
7272

7373
public void ResolveRef(TablesComponent tables)

Assets/Hotfix/Config/Generate/item/Sounds.cs.meta renamed to Assets/Hotfix/Config/Generate/Tables/Sounds.cs.meta

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)