Home / Lua / Events / Client / Render

Name    Render
Arguments (in table)    None
Return option    None

Description

Fired before JC2-MP renders. Anything rendered will be behind any JC2-MP elements, including the chat, console, and pause menu.

Examples

Foo = function(args)
	-- Draw a red dot in the center of the screen.
	Render:FillCircle(Render.Size / 2, 5, Color(255, 0, 0))
end

Events:Subscribe("Render", Foo)