OnClientRender: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 9: Line 9:
The [[event system#Event source|source]] of this event is the client's [[root element]].
The [[event system#Event source|source]] of this event is the client's [[root element]].


function showPic() 
==Example==
    dxDrawImage(1074.0,898.0,187.0,107.0,"images/TestPic",0.0,0.0,0.0,tocolor(255,255,255,255),false)   
[[Category:Needs Example]]
end
addEventHandler("onClientRender",root,showPic)


==See Also==
==See Also==

Revision as of 10:41, 24 June 2010

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.

Example

See Also

Other client events


Client event functions