From b0b1c850479bfcca28ddf294fdd189a99b6567cb Mon Sep 17 00:00:00 2001 From: ww-rm Date: Thu, 17 Apr 2025 20:10:59 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=B3=A8=E9=87=8A=E5=92=8C?= =?UTF-8?q?=E6=96=87=E6=9C=AC=E6=8F=8F=E8=BF=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SpineViewer/Spine/SpineExporter/Exporter.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SpineViewer/Spine/SpineExporter/Exporter.cs b/SpineViewer/Spine/SpineExporter/Exporter.cs index e5a0999..295514e 100644 --- a/SpineViewer/Spine/SpineExporter/Exporter.cs +++ b/SpineViewer/Spine/SpineExporter/Exporter.cs @@ -131,12 +131,12 @@ namespace SpineViewer.Spine.SpineExporter private Padding padding = new(0); /// - /// 允许内容溢出到边缘和填充区域 + /// 在使用预览画面分辨率的情况下, 允许内容溢出到边缘和填充区域, 自动分辨率下忽略该值 /// public bool AllowContentOverflow { get; set; } = false; /// - /// 自动分辨率, 将会忽略预览画面的分辨率和预览画面视区, 使用模型自身的包围盒, 四周填充会被忽略 + /// 自动分辨率, 将会忽略预览画面的分辨率和预览画面视区, 使用模型自身的包围盒, 四周填充和内容溢出会被忽略 /// public bool AutoResolution { get; set; } = false; @@ -377,7 +377,7 @@ namespace SpineViewer.Spine.SpineExporter /// /// 允许内容溢出到边缘和填充区域 /// - [Category("[0] 导出"), DisplayName("允许内容溢出"), Description("允许内容溢出到边缘和填充区域")] + [Category("[0] 导出"), DisplayName("允许内容溢出"), Description("使用预览画面分辨率的情况下, 允许内容溢出到边缘和填充区域")] public bool AllowContentOverflow { get => Exporter.AllowContentOverflow; set => Exporter.AllowContentOverflow = value; } ///