修改默认导出背景颜色为不透明黑色
This commit is contained in:
@@ -82,12 +82,12 @@ namespace Spine.Exporters
|
|||||||
_backgroundColorPma = bcPma;
|
_backgroundColorPma = bcPma;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
protected Color _backgroundColor = Color.Transparent;
|
protected Color _backgroundColor = Color.Black;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 预乘后的背景颜色
|
/// 预乘后的背景颜色
|
||||||
/// </summary>
|
/// </summary>
|
||||||
protected Color _backgroundColorPma = Color.Transparent;
|
protected Color _backgroundColorPma = Color.Black;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 画面分辨率
|
/// 画面分辨率
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ namespace SpineViewer.ViewModels.Exporters
|
|||||||
/// 背景颜色
|
/// 背景颜色
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public Color BackgroundColor { get => _backgroundColor; set => SetProperty(ref _backgroundColor, value); }
|
public Color BackgroundColor { get => _backgroundColor; set => SetProperty(ref _backgroundColor, value); }
|
||||||
protected Color _backgroundColor = Color.FromArgb(0, 0, 0, 0);
|
protected Color _backgroundColor = Color.FromArgb(255, 0, 0, 0);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 四周边缘距离
|
/// 四周边缘距离
|
||||||
|
|||||||
Reference in New Issue
Block a user