OnClientRender: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 17: Line 17:
setCameraMatrix ( x, y, z + 50, x, y, z )
setCameraMatrix ( x, y, z + 50, x, y, z )
end
end
addEventHandler ( "onClientPreRender", root, updateCamera )
addEventHandler ( "onClientRender", root, updateCamera )
</syntaxhighlight>
</syntaxhighlight>


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

Revision as of 17:44, 6 August 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

This example makes the camera follow the player in a GTA2-like way. This will be a little bit laggy. If you want the camera to follow something (eg. player or vehicle) then use onClientPreRender instead.

root = getRootElement ()
function updateCamera ()
	local x, y, z = getElementPosition ( getLocalPlayer () )
	setCameraMatrix ( x, y, z + 50, x, y, z )
end
addEventHandler ( "onClientRender", root, updateCamera )

See Also

Other client events


Client event functions