调整时间轴处理顺序

This commit is contained in:
ww-rm
2025-10-26 17:35:51 +08:00
parent 5eba515eac
commit e14c54c3a4

View File

@@ -316,9 +316,9 @@ namespace SpineViewerCLI
// TODO: 设置要启用的插槽 // TODO: 设置要启用的插槽
// 时间轴处理 // 时间轴处理
spine.Update(result.GetValue(OptTime));
var warmup = result.GetValue(OptWarmUp); var warmup = result.GetValue(OptWarmUp);
spine.Update(warmup < 0 ? spine.GetAnimationMaxDuration() : warmup); spine.Update(warmup < 0 ? spine.GetAnimationMaxDuration() : warmup);
spine.Update(result.GetValue(OptTime));
var exporter = GetExporterFilledWithArgs(result, spine); var exporter = GetExporterFilledWithArgs(result, spine);