SetTextDrawScale: Difference between revisions
From Onset Developer Wiki
No edit summary |
No edit summary |
||
(2 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
{{Info|Function|Client|1.0}} | {{Info|Function|Client|1.0}} | ||
{{FuncDescription| | {{FuncDescription|Sets the draw scale for the DrawText function.}} | ||
{{FuncSyntax| | {{FuncSyntax|SetTextDrawScale(sx, sy)}} | ||
{{FuncParameters}} | {{FuncParameters}} | ||
{{FuncParam|sx| | {{FuncParam|sx|Draw X scale between 0.0 and 128.0}} | ||
{{FuncParam|sy| | {{FuncParam|sy|Draw Y scale between 0.0 and 128.0}} | ||
{{FuncReturnValue| | {{FuncReturnValue|Returns nothing.}} | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua"> | |||
AddEvent("OnRenderHUD", function() | |||
SetTextDrawScale(2.0, 2.0) | |||
DrawText(4, 400, "WTF ACTIVE LOL") | |||
SetTextDrawScale(1.0, 1.0) | |||
end) | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
Line 26: | Line 32: | ||
* [[DrawRect]] | * [[DrawRect]] | ||
* [[DrawTexture]] | * [[DrawTexture]] | ||
* [[DrawTextureEx]] | |||
* [[DrawMaterial]] |
Latest revision as of 09:54, 5 October 2020
Description
Sets the draw scale for the DrawText function.
Syntax
SetTextDrawScale(sx, sy)
Parameters
- sx
Draw X scale between 0.0 and 128.0 - sy
Draw Y scale between 0.0 and 128.0
Return Value
- Returns nothing.
Example
AddEvent("OnRenderHUD", function()
SetTextDrawScale(2.0, 2.0)
DrawText(4, 400, "WTF ACTIVE LOL")
SetTextDrawScale(1.0, 1.0)
end)