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

21 lines
647 B
C#

namespace QuickFont
{
/// <summary>
/// The configuraiton used when loading a font from a qfont file.
/// </summary>
public class QFontLoaderConfiguration : QFontConfiguration
{
public QFontLoaderConfiguration() { }
public QFontLoaderConfiguration(bool addDropShadow) : this(addDropShadow, false) { }
public QFontLoaderConfiguration(bool addDropShadow, bool TransformToOrthogProjection)
{
if (addDropShadow)
this.ShadowConfig = new QFontShadowConfiguration();
this.TransformToCurrentOrthogProjection = TransformToOrthogProjection;
}
}
}