diff --git a/WzComparerR2.Common/Animation/Frame.cs b/WzComparerR2.Common/Animation/Frame.cs index a083781d..19f38ed0 100644 --- a/WzComparerR2.Common/Animation/Frame.cs +++ b/WzComparerR2.Common/Animation/Frame.cs @@ -111,7 +111,7 @@ public static Frame CreateFromNode(Wz_Node frameNode, GraphicsDevice graphicsDev if (frame.Delay == 0) { - frame.Delay = 100;//给予默认delay + frame.Delay = 120;//给予默认delay } return frame; } diff --git a/WzComparerR2.Common/Gif.cs b/WzComparerR2.Common/Gif.cs index 11c8beff..6a7f51ac 100644 --- a/WzComparerR2.Common/Gif.cs +++ b/WzComparerR2.Common/Gif.cs @@ -234,7 +234,7 @@ public static GifFrame CreateFrameFromNode(Wz_Node frameNode, GlobalFindNodeFunc } if (gifFrame.Delay == 0) { - gifFrame.Delay = 100;//给予默认delay + gifFrame.Delay = 120;//给予默认delay } return gifFrame; } diff --git a/WzComparerR2.MapRender/ResourceLoader.cs b/WzComparerR2.MapRender/ResourceLoader.cs index 5acc085a..586c889c 100644 --- a/WzComparerR2.MapRender/ResourceLoader.cs +++ b/WzComparerR2.MapRender/ResourceLoader.cs @@ -374,7 +374,7 @@ private Frame LoadFrame(Wz_Node node) Texture = atlas.Texture, AtlasRect = atlas.SrcRect, Z = node.Nodes["z"].GetValueEx(0), - Delay = node.Nodes["delay"].GetValueEx(100), + Delay = node.Nodes["delay"].GetValueEx(120), Blend = node.Nodes["blend"].GetValueEx(0) != 0, Origin = (node.Nodes["origin"]?.Value as Wz_Vector)?.ToPoint() ?? Point.Zero };