DrawLine: Difference between revisions
From Onset Developer Wiki
Created page with "{{Info|Function|Client|1.0}} {{FuncDescription|__EDIT_ME__}} {{FuncSyntax|DrawLine(sX, sY, eX, eY [, thickness, r, g, b])}} {{FuncParameters}} {{FuncParam|sX|__EDIT_ME__}}..." |
No edit summary |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{Info|Function|Client|1.0}} | {{Info|Function|Client|1.0}} | ||
{{FuncDescription| | {{FuncDescription|Draws a line in screen space.}} | ||
{{FuncSyntax|DrawLine(sX, sY, eX, eY [, thickness | {{FuncSyntax|DrawLine(sX, sY, eX, eY [, thickness])}} | ||
{{FuncParameters}} | {{FuncParameters}} | ||
{{FuncParam|sX| | {{FuncParam|sX|Start X location.}} | ||
{{FuncParam|sY| | {{FuncParam|sY|Start Y location.}} | ||
{{FuncParam|eX| | {{FuncParam|eX|End X location.}} | ||
{{FuncParam|eY | | {{FuncParam|eY|End Y location.}} | ||
{{ | {{FuncParamOptional|thickness|Line thickness, default: 1.0}} | ||
{{FuncReturnValue| | {{FuncReturnValue|Returns nothing.}} | ||
== Example == | == Example == | ||
<syntaxhighlight lang="Lua"> | |||
local EnableESP = 0 | |||
function SetEnableESP(enable) | |||
EnableESP = enable | |||
end | |||
AddRemoteEvent("SetEnableESP", SetEnableESP) | |||
function OnRenderHUD() | |||
if EnableESP ~= 1 then | |||
return | |||
end | |||
local x, y, z | |||
local ScreenX, ScreenY = GetScreenSize() | |||
local t = { 1 } | |||
for k, v in pairs(GetStreamedPlayers()) do | |||
local x, y, z = GetPlayerLocation(v) | |||
local sX, sY, sZ = WorldToScreen(x, y, z) | |||
if sZ ~= 0.0 then | |||
DrawLine(ScreenX / 2, ScreenY, sX, sY) | |||
DrawBox(sX - 50, sY - 100, 100, 200) | |||
end | |||
end | |||
end | |||
AddEvent("OnRenderHUD", OnRenderHUD) | |||
</syntaxhighlight> | |||
{{RelatedFunctions}} | {{RelatedFunctions}} | ||
* [[DrawText]] | |||
* [[SetDrawColor]] | |||
* [[SetTextDrawScale]] | |||
* [[GetTextSize]] | |||
* [[DrawLine]] | |||
* [[DrawLine3D]] | |||
* [[DrawPoint3D]] | |||
* [[DrawCircle3D]] | |||
* [[DrawBox]] | |||
* [[DrawRect]] | |||
* [[DrawTexture]] | |||
* [[DrawTextureEx]] | |||
* [[DrawMaterial]] |
Latest revision as of 20:25, 30 August 2020
Description
Draws a line in screen space.
Syntax
DrawLine(sX, sY, eX, eY [, thickness])
Parameters
- sX
Start X location. - sY
Start Y location. - eX
End X location. - eY
End Y location. - thickness (optional)
Line thickness, default: 1.0
Return Value
- Returns nothing.
Example
local EnableESP = 0
function SetEnableESP(enable)
EnableESP = enable
end
AddRemoteEvent("SetEnableESP", SetEnableESP)
function OnRenderHUD()
if EnableESP ~= 1 then
return
end
local x, y, z
local ScreenX, ScreenY = GetScreenSize()
local t = { 1 }
for k, v in pairs(GetStreamedPlayers()) do
local x, y, z = GetPlayerLocation(v)
local sX, sY, sZ = WorldToScreen(x, y, z)
if sZ ~= 0.0 then
DrawLine(ScreenX / 2, ScreenY, sX, sY)
DrawBox(sX - 50, sY - 100, 100, 200)
end
end
end
AddEvent("OnRenderHUD", OnRenderHUD)