diff options
| author | Apickx <Apickx@cogarr.org> | 2015-12-28 19:18:30 -0500 |
|---|---|---|
| committer | Apickx <Apickx@cogarr.org> | 2015-12-28 19:18:30 -0500 |
| commit | 868e729d68b5913716bfe5ddb512f4099851e9a2 (patch) | |
| tree | 6441108754145dfd68a6e23bea382b5cb1ab63d5 /gamemode/cl_various/fonts.lua | |
| download | gearfox-master.tar.gz gearfox-master.tar.bz2 gearfox-master.zip | |
Diffstat (limited to 'gamemode/cl_various/fonts.lua')
| -rw-r--r-- | gamemode/cl_various/fonts.lua | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gamemode/cl_various/fonts.lua b/gamemode/cl_various/fonts.lua new file mode 100644 index 0000000..ba62ff5 --- /dev/null +++ b/gamemode/cl_various/fonts.lua @@ -0,0 +1,11 @@ +//Fonts + +surface.CreateFont( "ScoreboardFont", {size = 64, weight = 400, font = "coolvetica"} ) +surface.CreateFont( "MBDefaultFont", {size = 16, weight = 500} ) +surface.CreateFont( "MBDefaultFontMedium", {size = 24, weight = 500} ) +surface.CreateFont( "MBDefaultFontLarge", {size = 32, weight = 500} ) +surface.CreateFont( "MBDefaultFontVeryLarge", {size = 48, weight = 500} ) +surface.CreateFont( "MBDefaultFontSuperLarge", {size = 64, weight = 500} ) +surface.CreateFont( "MBChatFont", {size = 16, weight = 900, shadow = true} ) +surface.CreateFont( "MBChatFont_Tag", {size = 18, weight = 700, antialias = false, font = "Akbar", shadow = true} ) +surface.CreateFont( "MBPlayerNameFont", {size = 30, weight = 900, shadow = true} )
\ No newline at end of file |
