mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-12-25 17:59:24 +01:00
bleh
This commit is contained in:
parent
f3372e93cb
commit
324055d82e
1 changed files with 5 additions and 13 deletions
|
@ -5,19 +5,11 @@ namespace MLEM.Formatting {
|
||||||
|
|
||||||
public static readonly FormatSettings Default = new FormatSettings();
|
public static readonly FormatSettings Default = new FormatSettings();
|
||||||
|
|
||||||
public float WobbleModifier;
|
public float WobbleModifier = 5;
|
||||||
public float WobbleHeightModifier;
|
public float WobbleHeightModifier = 1 / 8F;
|
||||||
public float TypingSpeed;
|
public float TypingSpeed = 20;
|
||||||
public Color DropShadowColor;
|
public Color DropShadowColor = Color.Black;
|
||||||
public Vector2 DropShadowOffset;
|
public Vector2 DropShadowOffset = new Vector2(2);
|
||||||
|
|
||||||
public FormatSettings() {
|
|
||||||
this.WobbleModifier = 5;
|
|
||||||
this.WobbleHeightModifier = 1 / 8F;
|
|
||||||
this.TypingSpeed = 20;
|
|
||||||
this.DropShadowColor = Color.Black;
|
|
||||||
this.DropShadowOffset = new Vector2(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue