OnClientRender

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

This event is triggered every time GTA renders a new frame. It is required for the DirectX drawing functions, and also useful for other clientside operations that have to be applied repeatedly with very short time differences between them.

Parameters

None

Source

The source of this event is the client's root element.

function showPic()

   dxDrawImage(1074.0,898.0,187.0,107.0,"images/TestPic",0.0,0.0,0.0,tocolor(255,255,255,255),false)    		

end addEventHandler("onClientRender",root,showPic)

See Also

Other client events


Client event functions