You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.0 KiB
38 lines
1.0 KiB
-- __ _ _______ _ __
|
|
-- / / /\ | | |__ __| | | \ \
|
|
-- / / / \ | |_ __ ___ | | ___ ___| |__ \ \
|
|
-- < < / /\ \ | | '_ ` _ \| |/ _ \/ __| '_ \ > >
|
|
-- \ \ / ____ \| | | | | | | | __/ (__| | | | / /
|
|
-- \_\ /_/ \_\_|_| |_| |_|_|\___|\___|_| |_| /_/
|
|
|
|
surface.CreateFont( "q_HUD", {
|
|
font = "Arial",
|
|
size = 30 * Quantum.Client.ResolutionScale,
|
|
antialias = true,
|
|
outline = true
|
|
})
|
|
|
|
surface.CreateFont( "q_text", {
|
|
font = "Arial",
|
|
size = 22 * Quantum.Client.ResolutionScale,
|
|
antialias = true
|
|
})
|
|
|
|
surface.CreateFont( "q_text2", {
|
|
font = "Arial",
|
|
size = 26 * Quantum.Client.ResolutionScale,
|
|
antialias = true
|
|
})
|
|
|
|
surface.CreateFont( "q_charNameText", {
|
|
font = "Arial",
|
|
outline = true,
|
|
size = 28 * Quantum.Client.ResolutionScale,
|
|
antialias = true
|
|
})
|
|
|
|
surface.CreateFont( "q_header", {
|
|
font = "Constantia Bold Italic",
|
|
size = 50 * Quantum.Client.ResolutionScale,
|
|
antialias = true
|
|
}) |