补充文字说明
This commit is contained in:
@@ -38,7 +38,7 @@ namespace SpineViewer.PropertyGridWrappers.Exporter
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// 循环次数
|
/// 循环次数
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Category("[3] 格式参数"), DisplayName("循环次数"), Description("循环次数, 0 无限循环, 取值范围 [0, 65535]")]
|
[Category("[3] 格式参数"), DisplayName("循环次数"), Description("-loop, 循环次数, 0 无限循环, 取值范围 [0, 65535]")]
|
||||||
public int Loop { get => Exporter.Loop; set => Exporter.Loop = value; }
|
public int Loop { get => Exporter.Loop; set => Exporter.Loop = value; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,12 +30,5 @@ namespace SpineViewer.PropertyGridWrappers.Exporter
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
[Category("[2] FFmpeg 基本参数"), DisplayName("文件名后缀"), Description("文件名后缀")]
|
[Category("[2] FFmpeg 基本参数"), DisplayName("文件名后缀"), Description("文件名后缀")]
|
||||||
public string CustomSuffix { get => Exporter.CustomSuffix; set => Exporter.CustomSuffix = value; }
|
public string CustomSuffix { get => Exporter.CustomSuffix; set => Exporter.CustomSuffix = value; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// 文件名后缀
|
|
||||||
/// </summary>
|
|
||||||
[Category("[2] FFmpeg 基本参数"), DisplayName("自定义参数"), Description("提供给 FFmpeg 的自定义参数")]
|
|
||||||
public override string CustomArgument { get => Exporter.CustomArgument; set => Exporter.CustomArgument = value; }
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ namespace SpineViewer.PropertyGridWrappers.Exporter
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// 文件名后缀
|
/// 文件名后缀
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Category("[2] FFmpeg 基本参数"), DisplayName("自定义参数"), Description("提供给 FFmpeg 的自定义参数, 除非很清楚自己在做什么, 否则请勿填写此参数")]
|
[Category("[2] FFmpeg 基本参数"), DisplayName("自定义参数"), Description("使用 \"ffmpeg -h -encoder=<编码器>\" 查看编码器支持的参数\n使用 \"ffmpeg -h -muxer=<文件格式>\" 查看文件格式支持的参数")]
|
||||||
public virtual string CustomArgument { get => Exporter.CustomArgument; set => Exporter.CustomArgument = value; }
|
public string CustomArgument { get => Exporter.CustomArgument; set => Exporter.CustomArgument = value; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ namespace SpineViewer.PropertyGridWrappers.Exporter
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// 透明度阈值
|
/// 透明度阈值
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Category("[3] 格式参数"), DisplayName("循环次数"), Description("循环次数, -1 不循环, 0 无限循环, 取值范围 [-1, 65535]")]
|
[Category("[3] 格式参数"), DisplayName("循环次数"), Description("-loop, 循环次数, -1 不循环, 0 无限循环, 取值范围 [-1, 65535]")]
|
||||||
public int Loop { get => Exporter.Loop; set => Exporter.Loop = value; }
|
public int Loop { get => Exporter.Loop; set => Exporter.Loop = value; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ namespace SpineViewer.PropertyGridWrappers.Exporter
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// 透明度阈值
|
/// 透明度阈值
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Category("[3] 格式参数"), DisplayName("循环次数"), Description("循环次数, 0 无限循环, 取值范围 [0, 65535]")]
|
[Category("[3] 格式参数"), DisplayName("循环次数"), Description("-loop, 循环次数, 0 无限循环, 取值范围 [0, 65535]")]
|
||||||
public int Loop { get => Exporter.Loop; set => Exporter.Loop = value; }
|
public int Loop { get => Exporter.Loop; set => Exporter.Loop = value; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user