Files
PCK-Studio/MinecraftUSkinEditor/Classes/StoneVOX/QFont/Configuration/QFontConfiguration.cs
PhoenixARC 10f1c8daa0 update
2021-08-09 19:05:20 -04:00

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;
}
}