调整动图默认帧率

This commit is contained in:
ww-rm
2025-04-09 13:40:11 +08:00
parent 067719c69b
commit 7a942b16bc
3 changed files with 3 additions and 4 deletions

View File

@@ -15,7 +15,7 @@ namespace SpineViewer.Exporter
{ {
public AvifExporter() public AvifExporter()
{ {
FPS = 12; FPS = 24;
} }
public override string Format => "avif"; public override string Format => "avif";

View File

@@ -15,8 +15,7 @@ namespace SpineViewer.Exporter
{ {
public GifExporter() public GifExporter()
{ {
// GIF 的帧率不能太高, 超过 50 帧反而会变慢 FPS = 24;
FPS = 12;
} }
public override string Format => "gif"; public override string Format => "gif";

View File

@@ -15,7 +15,7 @@ namespace SpineViewer.Exporter
{ {
public WebpExporter() public WebpExporter()
{ {
FPS = 12; FPS = 24;
} }
public override string Format => "webp"; public override string Format => "webp";