diff --git a/VPet-Simulator.Core/Display/Main.xaml b/VPet-Simulator.Core/Display/Main.xaml
index e4e41d3..d04ee5a 100644
--- a/VPet-Simulator.Core/Display/Main.xaml
+++ b/VPet-Simulator.Core/Display/Main.xaml
@@ -4,14 +4,15 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:local="clr-namespace:VPet_Simulator.Core"
mc:Ignorable="d" d:DesignHeight="250" d:DesignWidth="250">
-
-
-
-
-
+
+
+
+
+
diff --git a/VPet-Simulator.Core/Display/Main.xaml.cs b/VPet-Simulator.Core/Display/Main.xaml.cs
index 6ee7fea..c04bc73 100644
--- a/VPet-Simulator.Core/Display/Main.xaml.cs
+++ b/VPet-Simulator.Core/Display/Main.xaml.cs
@@ -245,7 +245,7 @@ namespace VPet_Simulator.Core
public void Dispose()
{
EventTimer.Stop();
- MoveTimer.Enabled = false; ;
+ MoveTimer.Enabled = false;
EventTimer.Dispose();
MoveTimer.Dispose();
MsgBar.Dispose();
diff --git a/VPet-Simulator.Tool/Program.cs b/VPet-Simulator.Tool/Program.cs
index e61f8d2..5f387eb 100644
--- a/VPet-Simulator.Tool/Program.cs
+++ b/VPet-Simulator.Tool/Program.cs
@@ -20,10 +20,8 @@ namespace VPet_Simulator.Tool
switch (Console.ReadLine())
{
case "1":
- do
- {
- Animation();
- } while (true);
+ Animation();
+ break;
default:
Console.WriteLine("暂无该功能");
goto start;
@@ -36,40 +34,43 @@ namespace VPet_Simulator.Tool
{
Console.WriteLine("请输入每张图片的持续时间 (单位: 毫秒)");
string timestr = Console.ReadLine();
- if(!int.TryParse(timestr,out int time))
+ if (!int.TryParse(timestr, out int time))
{
time = 125;
}
- Console.WriteLine("请输入图片位置");
- DirectoryInfo directoryInfo = new DirectoryInfo(Console.ReadLine());
- int id = 0;
- int rpt = 1;
- string hash = null;
- FileInfo lastf = null;
- foreach (FileInfo fileInfo in directoryInfo.GetFiles())
+ while (true)
{
- if (lastf == null)
+ Console.WriteLine("请输入图片位置");
+ DirectoryInfo directoryInfo = new DirectoryInfo(Console.ReadLine());
+ int id = 0;
+ int rpt = 1;
+ string hash = null;
+ FileInfo lastf = null;
+ foreach (FileInfo fileInfo in directoryInfo.GetFiles())
{
+ if (lastf == null)
+ {
+ lastf = fileInfo;
+ hash = GetFileHash(fileInfo);
+ continue;
+ }
+ string filehash = GetFileHash(fileInfo);
+ if (hash.Equals(filehash))
+ {
+ //这个文件和上一个文件的hash值相同,这个上个文件
+ lastf.Delete();
+ lastf = fileInfo;
+ rpt++;
+ continue;
+ }
+ hash = filehash;
+ lastf.MoveTo(Path.Combine(directoryInfo.FullName, $"{lastf.Name.Split('_', '-')[0]}_{id++:D3}_{rpt * time}.png"));
+ rpt = 1;
lastf = fileInfo;
- hash = GetFileHash(fileInfo);
- continue;
}
- string filehash = GetFileHash(fileInfo);
- if (hash.Equals(filehash))
- {
- //这个文件和上一个文件的hash值相同,这个上个文件
- lastf.Delete();
- lastf = fileInfo;
- rpt++;
- continue;
- }
- hash = filehash;
- lastf.MoveTo(Path.Combine(directoryInfo.FullName, $"{lastf.Name.Split('_')[0]}_{id++:D3}_{rpt * time}.png"));
- rpt = 1;
- lastf = fileInfo;
+ lastf.MoveTo(Path.Combine(directoryInfo.FullName, $"{lastf.Name.Split('_', '-')[0]}_{id++:D3}_{rpt * time}.png"));
+ Console.WriteLine("图片处理已完成");
}
- lastf.MoveTo(Path.Combine(directoryInfo.FullName, $"{lastf.Name.Split('_')[0]}_{id++:D3}_{rpt * time}.png"));
- Console.WriteLine("图片处理已完成");
}
public static string GetFileHash(FileInfo fileInfo)
{
diff --git a/VPet-Simulator.Windows/MainWindow.cs b/VPet-Simulator.Windows/MainWindow.cs
index 4eed823..17b6b54 100644
--- a/VPet-Simulator.Windows/MainWindow.cs
+++ b/VPet-Simulator.Windows/MainWindow.cs
@@ -43,7 +43,7 @@ namespace VPet_Simulator.Windows
public void SetZoomLevel(double zl)
{
Set.ZoomLevel = zl;
- this.Height = 500 * zl;
+ //this.Height = 500 * zl;
this.Width = 500 * zl;
}
///
@@ -56,7 +56,8 @@ namespace VPet_Simulator.Windows
//游戏存档
if (Set != null)
{
- Set.VoiceVolume = Main.PlayVoiceVolume;
+ if (Main != null)
+ Set.VoiceVolume = Main.PlayVoiceVolume;
File.WriteAllText(AppDomain.CurrentDomain.BaseDirectory + @"\Setting.lps", Set.ToString());
}
if (Core != null && Core.Save != null)
diff --git a/VPet-Simulator.Windows/MainWindow.xaml b/VPet-Simulator.Windows/MainWindow.xaml
index ad4e1b9..492cabe 100644
--- a/VPet-Simulator.Windows/MainWindow.xaml
+++ b/VPet-Simulator.Windows/MainWindow.xaml
@@ -4,8 +4,8 @@
xmlns:pu="clr-namespace:Panuon.WPF.UI;assembly=Panuon.WPF.UI"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" ShowInTaskbar="False"
xmlns:local="clr-namespace:VPet_Simulator.Windows" mc:Ignorable="d" WindowStyle="None" Title="MainWindow"
- Height="250" Width="250" Background="{x:Null}" Topmost="True" Closed="Window_Closed"
- pu:WindowXCaption.Height="0" >
+ Width="250" Background="{x:Null}" Topmost="True" Closed="Window_Closed" pu:WindowXCaption.Height="0"
+ SizeToContent="Height">
diff --git a/VPet-Simulator.Windows/MainWindow.xaml.cs b/VPet-Simulator.Windows/MainWindow.xaml.cs
index ee616b2..f8e8862 100644
--- a/VPet-Simulator.Windows/MainWindow.xaml.cs
+++ b/VPet-Simulator.Windows/MainWindow.xaml.cs
@@ -72,7 +72,7 @@ namespace VPet_Simulator.Windows
//this.Height = 450 * ZoomSlider.Value;
InitializeComponent();
- this.Height = 500 * Set.ZoomLevel;
+ //this.Height = 500 * Set.ZoomLevel;
this.Width = 500 * Set.ZoomLevel;
if (Set.StartRecordLast)
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_000_125.png
new file mode 100644
index 0000000..570188d
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_000_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_001_125.png
new file mode 100644
index 0000000..686c785
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_001_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_002_125.png
new file mode 100644
index 0000000..502c216
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_002_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_003_125.png
new file mode 100644
index 0000000..2dd2627
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_003_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_004_125.png
new file mode 100644
index 0000000..686c785
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_004_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_005_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_005_250.png
new file mode 100644
index 0000000..570188d
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_005_250.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_006_125.png
new file mode 100644
index 0000000..e91c7ac
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_006_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_007_125.png
new file mode 100644
index 0000000..531cac1
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_007_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_008_125.png
new file mode 100644
index 0000000..5dd7b25
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_008_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_009_125.png
new file mode 100644
index 0000000..24d29ae
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_009_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_010_125.png
new file mode 100644
index 0000000..47a50b3
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_010_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_011_125.png
new file mode 100644
index 0000000..e91c7ac
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_011_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_012_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_012_250.png
new file mode 100644
index 0000000..570188d
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/1/循环A_012_250.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_000_125.png
new file mode 100644
index 0000000..570188d
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_000_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_001_125.png
new file mode 100644
index 0000000..686c785
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_001_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_002_125.png
new file mode 100644
index 0000000..7810053
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_002_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_003_125.png
new file mode 100644
index 0000000..206a9dd
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_003_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_004_125.png
new file mode 100644
index 0000000..686c785
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_004_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_005_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_005_250.png
new file mode 100644
index 0000000..570188d
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_005_250.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_006_125.png
new file mode 100644
index 0000000..e91c7ac
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_006_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_007_125.png
new file mode 100644
index 0000000..531cac1
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_007_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_008_125.png
new file mode 100644
index 0000000..5dd7b25
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_008_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_009_125.png
new file mode 100644
index 0000000..24d29ae
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_009_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_010_125.png
new file mode 100644
index 0000000..47a50b3
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_010_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_011_125.png
new file mode 100644
index 0000000..e91c7ac
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_011_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_012_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_012_250.png
new file mode 100644
index 0000000..570188d
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/2/循环B_012_250.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_000_125.png
new file mode 100644
index 0000000..570188d
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_000_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_001_125.png
new file mode 100644
index 0000000..686c785
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_001_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_002_125.png
new file mode 100644
index 0000000..319fa81
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_002_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_003_125.png
new file mode 100644
index 0000000..f87f04e
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_003_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_004_125.png
new file mode 100644
index 0000000..650e898
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_004_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_005_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_005_250.png
new file mode 100644
index 0000000..972cc8a
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_005_250.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_006_125.png
new file mode 100644
index 0000000..ac7bc00
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_006_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_007_125.png
new file mode 100644
index 0000000..00b5d9a
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_007_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_008_125.png
new file mode 100644
index 0000000..a00d154
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_008_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_009_125.png
new file mode 100644
index 0000000..24d29ae
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_009_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_010_125.png
new file mode 100644
index 0000000..47a50b3
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_010_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_011_125.png
new file mode 100644
index 0000000..e91c7ac
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_011_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_012_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_012_250.png
new file mode 100644
index 0000000..570188d
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy/3/循环_012_250.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10001.png_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10001.png_000_125.png
deleted file mode 100644
index f4efcf2..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10001.png_000_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10002.png_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10002.png_001_125.png
deleted file mode 100644
index 368b5ec..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10002.png_001_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10003.png_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10003.png_002_125.png
deleted file mode 100644
index ff9bba0..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10003.png_002_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10004.png_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10004.png_003_125.png
deleted file mode 100644
index 9d5f69f..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10004.png_003_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10005.png_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10005.png_004_125.png
deleted file mode 100644
index 368b5ec..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10005.png_004_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10007.png_005_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10007.png_005_250.png
deleted file mode 100644
index f4efcf2..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10007.png_005_250.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10008.png_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10008.png_006_125.png
deleted file mode 100644
index e770eb7..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10008.png_006_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10009.png_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10009.png_007_125.png
deleted file mode 100644
index c60c841..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10009.png_007_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10010.png_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10010.png_008_125.png
deleted file mode 100644
index cd21ff3..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10010.png_008_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10011.png_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10011.png_009_125.png
deleted file mode 100644
index 1b0af40..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10011.png_009_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10012.png_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10012.png_010_125.png
deleted file mode 100644
index c487136..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10012.png_010_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10013.png_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10013.png_011_125.png
deleted file mode 100644
index e770eb7..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10013.png_011_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10015.png_012_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10015.png_012_250.png
deleted file mode 100644
index f4efcf2..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_1/循环A10015.png_012_250.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20001.png_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20001.png_000_125.png
deleted file mode 100644
index f4efcf2..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20001.png_000_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20002.png_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20002.png_001_125.png
deleted file mode 100644
index 368b5ec..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20002.png_001_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20003.png_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20003.png_002_125.png
deleted file mode 100644
index a1d3724..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20003.png_002_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20004.png_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20004.png_003_125.png
deleted file mode 100644
index 1d6274d..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20004.png_003_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20005.png_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20005.png_004_125.png
deleted file mode 100644
index 368b5ec..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20005.png_004_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20007.png_005_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20007.png_005_250.png
deleted file mode 100644
index f4efcf2..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20007.png_005_250.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20008.png_006_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20008.png_006_125.png
deleted file mode 100644
index e770eb7..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20008.png_006_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20009.png_007_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20009.png_007_125.png
deleted file mode 100644
index c60c841..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20009.png_007_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20010.png_008_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20010.png_008_125.png
deleted file mode 100644
index cd21ff3..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20010.png_008_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20011.png_009_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20011.png_009_125.png
deleted file mode 100644
index 1b0af40..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20011.png_009_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20012.png_010_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20012.png_010_125.png
deleted file mode 100644
index c487136..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20012.png_010_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20013.png_011_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20013.png_011_125.png
deleted file mode 100644
index e770eb7..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20013.png_011_125.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20015.png_012_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20015.png_012_250.png
deleted file mode 100644
index f4efcf2..0000000
Binary files a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Default/Happy_2/快乐呼吸A20015.png_012_250.png and /dev/null differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_000_125.png
new file mode 100644
index 0000000..af71096
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_000_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_001_125.png
new file mode 100644
index 0000000..49f6a1c
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_001_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_002_125.png
new file mode 100644
index 0000000..cd856bd
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_002_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_003_125.png
new file mode 100644
index 0000000..cf9a6b5
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_003_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_004_125.png
new file mode 100644
index 0000000..07098cc
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_004_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_005_125.png
new file mode 100644
index 0000000..1ce70bf
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_005_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_006_250.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_006_250.png
new file mode 100644
index 0000000..8f1db2a
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/A_Happy/哈皮坐下A_006_250.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_000_125.png
new file mode 100644
index 0000000..f4d85e3
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_000_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_001_125.png
new file mode 100644
index 0000000..06b817f
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_001_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_002_750.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_002_750.png
new file mode 100644
index 0000000..78b5511
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_002_750.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_003_125.png
new file mode 100644
index 0000000..2240e5a
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_003_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_004_125.png
new file mode 100644
index 0000000..48eb7dc
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_004_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_005_625.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_005_625.png
new file mode 100644
index 0000000..3cb0357
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/1/哈皮坐下循环B1_005_625.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_000_125.png
new file mode 100644
index 0000000..3b5ca13
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_000_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_001_125.png
new file mode 100644
index 0000000..3f68762
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_001_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_002_750.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_002_750.png
new file mode 100644
index 0000000..0f16c70
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_002_750.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_003_125.png
new file mode 100644
index 0000000..edb3484
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_003_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_004_125.png
new file mode 100644
index 0000000..2dd3355
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_004_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_005_625.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_005_625.png
new file mode 100644
index 0000000..3cb0357
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/B_Happy/2/坐下循环B2_005_625.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_000_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_000_125.png
new file mode 100644
index 0000000..1ce70bf
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_000_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_001_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_001_125.png
new file mode 100644
index 0000000..07098cc
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_001_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_002_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_002_125.png
new file mode 100644
index 0000000..cf9a6b5
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_002_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_003_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_003_125.png
new file mode 100644
index 0000000..cd856bd
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_003_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_004_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_004_125.png
new file mode 100644
index 0000000..49f6a1c
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_004_125.png differ
diff --git a/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_005_125.png b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_005_125.png
new file mode 100644
index 0000000..af71096
Binary files /dev/null and b/VPet-Simulator.Windows/mod/0000_core/pet/vup/Idel/StateONE/C_Happy/StateONE_005_125.png differ
diff --git a/VPet.sln b/VPet.sln
index 67230ce..7303fd0 100644
--- a/VPet.sln
+++ b/VPet.sln
@@ -31,8 +31,8 @@ Global
{7BD4CB1D-C8F3-4349-9BF0-CD11789130BA}.Release|Any CPU.Build.0 = Release|Any CPU
{7BD4CB1D-C8F3-4349-9BF0-CD11789130BA}.Release|x64.ActiveCfg = Release|Any CPU
{7BD4CB1D-C8F3-4349-9BF0-CD11789130BA}.Release|x64.Build.0 = Release|Any CPU
- {7BD4CB1D-C8F3-4349-9BF0-CD11789130BA}.Release|x86.ActiveCfg = Release|x86
- {7BD4CB1D-C8F3-4349-9BF0-CD11789130BA}.Release|x86.Build.0 = Release|x86
+ {7BD4CB1D-C8F3-4349-9BF0-CD11789130BA}.Release|x86.ActiveCfg = Release|Any CPU
+ {7BD4CB1D-C8F3-4349-9BF0-CD11789130BA}.Release|x86.Build.0 = Release|Any CPU
{692CE45E-01A9-4500-8B1D-AFC0FE2767FA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{692CE45E-01A9-4500-8B1D-AFC0FE2767FA}.Debug|Any CPU.Build.0 = Debug|Any CPU
{692CE45E-01A9-4500-8B1D-AFC0FE2767FA}.Debug|x64.ActiveCfg = Debug|x64