mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-27 22:35:34 +00:00
21 lines
647 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|