OnRenderHUD: Difference between revisions

From Onset Developer Wiki
No edit summary
mNo edit summary
Line 13: Line 13:


{{RelatedFunctions}}
{{RelatedFunctions}}
[[Template:ClientEvents]]
{{GameClientEvents}}

Revision as of 08:40, 16 January 2020

OnRenderHUD

Type: Event
Context: Client
Introduced: v1.0

Description

This function is called every time the HUD is rendered for the player. This function can be used as a game tick event.

Syntax

OnRenderHUD()

Example

AddEvent("OnRenderHUD", function ()
    -- code
end)

See also