SetCameraClip

From Multi Theft Auto: Wiki
Revision as of 15:45, 2 October 2009 by Paul Cortez (talk | contribs) (Just made the description a -bit- more useful. Probably needs some correcting.)
Jump to navigation Jump to search

This function sets if the camera will "collide" with any objects or vehicles in its way. This means that if object clip is enabled an object is in the way of where the camera actually wants to be, the camera will try to be in front of it. This function can disable that.

Note: This function doesn't fix the issue of camera clip not working on objects out of world bounds.

Syntax

bool setCameraClip ( bool objects, bool vehicles ) 

Required Arguments

  • objects: Sets if you want the camera to clip on objects.
  • vehicles: Sets if you want the camera to clip on vehicles.

Returns

Always returns true.

Example

Click to collapse [-]
Client
-- TODO

See Also