mirror of
https://github.com/LorisYounger/VPet.ModMaker.git
synced 2024-08-30 18:22:21 +00:00
更新
This commit is contained in:
parent
4c311c2d70
commit
5d8fef7808
10
README.md
10
README.md
@ -1 +1,11 @@
|
|||||||
# VPet.ModMaker
|
# VPet.ModMaker
|
||||||
|
|
||||||
|
《虚拟桌宠模拟器》MOD 制作器 0 门槛,打开就能用。支持所有游戏内容(动画,文本,效果皆可)。跟随游戏更新,出新内容,MOD 制作器也会跟随更新,立即上手制作吧!
|
||||||
|
|
||||||
|
[游戏本体](https://store.steampowered.com/app/1920960)
|
||||||
|
[MOD制作器]()
|
||||||
|
[MOD制作器Github](https://github.com/LorisYounger/VPet.ModMaker)
|
||||||
|
|
||||||
|
## [Wiki](https://github.com/LorisYounger/VPet.ModMaker/wiki)
|
||||||
|
|
||||||
|
[简体中文Wiki](https://github.com/LorisYounger/VPet.ModMaker/wiki/%E7%AE%80%E4%BD%93%E4%B8%AD%E6%96%87%E4%B8%BB%E9%A1%B5%E9%9D%A2)
|
@ -684,6 +684,8 @@ public class ModInfoModel : I18nModel<I18nModInfoModel>
|
|||||||
/// <param name="path">路径</param>
|
/// <param name="path">路径</param>
|
||||||
private void SaveImage(string path)
|
private void SaveImage(string path)
|
||||||
{
|
{
|
||||||
|
if (Foods.Count == 0)
|
||||||
|
return;
|
||||||
var imagePath = Path.Combine(path, "image");
|
var imagePath = Path.Combine(path, "image");
|
||||||
Directory.CreateDirectory(imagePath);
|
Directory.CreateDirectory(imagePath);
|
||||||
if (Foods.Count > 0)
|
if (Foods.Count > 0)
|
||||||
|
@ -160,7 +160,10 @@ public class ModEditWindowVM
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
private void Save()
|
private void Save()
|
||||||
{
|
{
|
||||||
if (MessageBox.Show("确定保存吗".Translate()) is not MessageBoxResult.Yes)
|
if (
|
||||||
|
MessageBox.Show("确定保存吗".Translate(), "", MessageBoxButton.YesNo)
|
||||||
|
is not MessageBoxResult.Yes
|
||||||
|
)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (string.IsNullOrEmpty(ModInfo.Value.SourcePath.Value))
|
if (string.IsNullOrEmpty(ModInfo.Value.SourcePath.Value))
|
||||||
|
@ -81,7 +81,7 @@
|
|||||||
<TextBlock
|
<TextBlock
|
||||||
HorizontalAlignment="Right"
|
HorizontalAlignment="Right"
|
||||||
VerticalAlignment="Top"
|
VerticalAlignment="Top"
|
||||||
Text="{Binding LastTimeString}" />
|
Text="{Binding LastTime, StringFormat={}yyyy/MM/dd HH:mm}" />
|
||||||
<TextBlock
|
<TextBlock
|
||||||
Grid.Row="1"
|
Grid.Row="1"
|
||||||
VerticalAlignment="Bottom"
|
VerticalAlignment="Bottom"
|
||||||
|
Loading…
Reference in New Issue
Block a user