From aade44cffbfe861f946635c8908c085718aaf77e Mon Sep 17 00:00:00 2001 From: ww-rm Date: Sun, 26 Oct 2025 15:19:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Spine/Exporters/FrameSequenceExporter.cs | 2 +- Spine/Exporters/VideoExporter.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Spine/Exporters/FrameSequenceExporter.cs b/Spine/Exporters/FrameSequenceExporter.cs index 4655178..3fdddc3 100644 --- a/Spine/Exporters/FrameSequenceExporter.cs +++ b/Spine/Exporters/FrameSequenceExporter.cs @@ -24,7 +24,7 @@ namespace Spine.Exporters int frameCount = GetFrameCount(); int frameIdx = 0; - _progressReporter?.Invoke(frameCount, 0, $"[{frameIdx}/{frameCount}] {output}"); + _progressReporter?.Invoke(frameCount, 0, $"[{frameIdx}/{frameCount}] {output}"); // 导出帧序列单独在此处调用进度报告 foreach (var frame in GetFrames(spines)) { if (ct.IsCancellationRequested) diff --git a/Spine/Exporters/VideoExporter.cs b/Spine/Exporters/VideoExporter.cs index e1bb672..164c241 100644 --- a/Spine/Exporters/VideoExporter.cs +++ b/Spine/Exporters/VideoExporter.cs @@ -92,7 +92,7 @@ namespace Spine.Exporters } /// - /// 生成帧序列 + /// 生成帧序列, 用于导出帧序列 /// protected IEnumerable GetFrames(SpineObject[] spines) { @@ -121,7 +121,7 @@ namespace Spine.Exporters } /// - /// 生成帧序列, 支持中途取消和进度输出 + /// 生成帧序列, 支持中途取消和进度输出, 用于动图视频等单个文件输出 /// protected IEnumerable GetFrames(SpineObject[] spines, string output, CancellationToken ct) {