Skip to content

Commit

Permalink
BaseResouceMod 1.0.8
Browse files Browse the repository at this point in the history
数据读取支持新增和遗漏的
Fame_Date( 实际变量为 actorFameDate)
villagename_date (只在 newgame 和创建教学关卡时载入)
  • Loading branch information
phorcys committed Dec 26, 2018
1 parent df021c7 commit 7a141d5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions BaseResourceMod/BaseResourceMod.cs
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,18 @@ static void OnSaveGUI(UnityModManager.ModEntry modEntry)
}, {
"villagename_date",
"villageNameDate"
},
{
"actorfame_date",
"actorFameDate"
},
{
"fame_date", // fame_date.txt -> actorFameDate 文件名小写化
"actorFameDate"
},
{
"villagename_date", // 在主菜单教学 或 newgame时读入, 可能hook的时机需要变动
"villageNameDate"
}
};

Expand Down
2 changes: 1 addition & 1 deletion BaseResourceMod/Info.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Id": "BaseResourceMod",
"DisplayName": "基础资源框架",
"Author": "phorcys",
"Version": "1.0.7",
"Version": "1.0.8",
"AssemblyName": "BaseResourceMod.dll",
"EntryMethod": "BaseResourceMod.Main.Load"
}

0 comments on commit 7a141d5

Please sign in to comment.