mirror of
https://github.com/lifestorm/wnsrc.git
synced 2025-12-17 21:53:46 +03:00
Upload
This commit is contained in:
51
lua/lvs_framework/autorun/cl_fonts.lua
Normal file
51
lua/lvs_framework/autorun/cl_fonts.lua
Normal file
@@ -0,0 +1,51 @@
|
||||
--[[
|
||||
| This file was obtained through the combined efforts
|
||||
| of Madbluntz & Plymouth Antiquarian Society.
|
||||
|
|
||||
| Credits: lifestorm, Gregory Wayne Rossel JR.,
|
||||
| Maloy, DrPepper10 @ RIP, Atle!
|
||||
|
|
||||
| Visit for more: https://plymouth.thetwilightzone.ru/
|
||||
--]]
|
||||
|
||||
local THE_FONT = {
|
||||
font = "Verdana",
|
||||
extended = false,
|
||||
size = 14,
|
||||
weight = 600,
|
||||
blursize = 0,
|
||||
scanlines = 0,
|
||||
antialias = true,
|
||||
underline = false,
|
||||
italic = false,
|
||||
strikeout = false,
|
||||
symbol = false,
|
||||
rotary = false,
|
||||
shadow = true,
|
||||
additive = false,
|
||||
outline = false,
|
||||
}
|
||||
surface.CreateFont( "LVS_VERSION", THE_FONT )
|
||||
|
||||
THE_FONT.extended = false
|
||||
THE_FONT.size = 20
|
||||
THE_FONT.weight = 2000
|
||||
surface.CreateFont( "LVS_FONT", THE_FONT )
|
||||
|
||||
THE_FONT.size = 16
|
||||
surface.CreateFont( "LVS_FONT_SWITCHER", THE_FONT )
|
||||
|
||||
THE_FONT.font = "Arial"
|
||||
THE_FONT.size = 14
|
||||
THE_FONT.weight = 1
|
||||
THE_FONT.shadow = false
|
||||
surface.CreateFont( "LVS_FONT_PANEL", THE_FONT )
|
||||
|
||||
THE_FONT.size = 20
|
||||
THE_FONT.weight = 2000
|
||||
surface.CreateFont( "LVS_FONT_HUD", THE_FONT )
|
||||
|
||||
THE_FONT.size = 40
|
||||
THE_FONT.weight = 2000
|
||||
THE_FONT.shadow = true
|
||||
surface.CreateFont( "LVS_FONT_HUD_LARGE", THE_FONT )
|
||||
Reference in New Issue
Block a user