移除一些非必要默认值

This commit is contained in:
ww-rm
2025-06-13 00:11:03 +08:00
parent 9be77ba8bd
commit 1092f37a02
3 changed files with 58 additions and 54 deletions

View File

@@ -26,17 +26,17 @@ namespace Spine.SpineWrappers
/// <summary>
/// 在读取纹理时强制进行通道预乘操作
/// </summary>
public bool ForcePremul { get; set; } = false;
public bool ForcePremul { get; set; }
/// <summary>
/// 强制使用 Nearest
/// </summary>
public bool ForceNearest { get; set; } = false;
public bool ForceNearest { get; set; }
/// <summary>
/// 强制启用 Mipmap
/// </summary>
public bool ForceMipmap { get; set; } = false;
public bool ForceMipmap { get; set; }
private SFML.Graphics.Texture ReadTexture(string path)
{