mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-27 22:35:34 +00:00
15 lines
478 B
C#
15 lines
478 B
C#
namespace QuickFont
|
|
{
|
|
public class QFontConfiguration
|
|
{
|
|
public QFontShadowConfiguration ShadowConfig = null;
|
|
public QFontKerningConfiguration KerningConfig = new QFontKerningConfiguration();
|
|
|
|
/// <summary>
|
|
/// Render the font pixel-prefectly at a size in units of the current orthogonal projection, independent of the viewport pixel size.
|
|
/// </summary>
|
|
public bool TransformToCurrentOrthogProjection = false;
|
|
|
|
}
|
|
}
|