SprayMesh Extended: Update "sprays are disabled" text

Inform the user how to re-enable sprays if they have them disabled
This commit is contained in:
Chev 2025-01-06 15:12:47 -08:00
parent 2e3cfce969
commit 6f49ca7e6b
Signed by: chev2
GPG key ID: 0B212D6AED495EC9

View file

@ -873,7 +873,8 @@ hook.Add("PostDrawHUD", "SprayMesh.GenerateSprayPlaceholderTextures", function()
surface.SetDrawColor(255, 255, 0, 255)
surface.DrawOutlinedRect(0, 0, ScrW(), ScrH(), 3)
draw.SimpleText("[sprays are disabled]", "DermaLarge", ScrW() / 2, ScrH() / 2, color_white, TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER)
draw.SimpleText("Sprays are disabled.", "DermaLarge", ScrW() / 2, ScrH() / 2, color_white, TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER)
draw.SimpleText("Use /spraymesh to re-enable them.", "DermaDefaultBold", ScrW() / 2, ScrH() / 2 + 32, color_white, TEXT_ALIGN_CENTER, TEXT_ALIGN_CENTER)
cam.End2D()
render.PopRenderTarget()