SetCameraClip: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with '{{Client function}} __NOTOC__ This function ... ==Syntax== <syntaxhighlight lang="lua"> bool setCameraClip ( bool objects, bool vehicles ) </syntaxhighlight> ===Required Arguments=== *'''objects:'…')
 
No edit summary
(4 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Client function}}  
{{Client function}}  
__NOTOC__  
__NOTOC__  
This function ...
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==  
==Syntax==  
Line 9: Line 11:


===Required Arguments===  
===Required Arguments===  
*'''objects:''' ...
*'''objects:''' Sets if you want the camera to clip on objects.
*'''vehicles:''' ...
*'''vehicles:''' Sets if you want the camera to clip on vehicles.


===Returns===
===Returns===
Returns always ''true''.
Always returns ''true''.


==Example==  
==Example==  
<section name="Client" class="client" show="true">
<section name="Client" class="client" show="true">
This function enables it to look though cars
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
-- TODO
function enableCameraThoughCars ()
  setCameraClip (true,false)
  outputChatBox ("Your camera can see the vehicle interior now!",255,0,0,false)
end
addEventHandler ("onClientResourceStart",getResourceRootElement(getThisResource()),enableCameraThoughCars)
</syntaxhighlight>
</syntaxhighlight>
</section>
</section>
Line 24: Line 31:
==See Also==
==See Also==
{{Client camera functions}}
{{Client camera functions}}
[[Category:Needs_Example]]
[[Category:Incomplete]]

Revision as of 16:50, 16 December 2010

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

This function enables it to look though cars

function enableCameraThoughCars ()
  setCameraClip (true,false)
  outputChatBox ("Your camera can see the vehicle interior now!",255,0,0,false)
end
addEventHandler ("onClientResourceStart",getResourceRootElement(getThisResource()),enableCameraThoughCars)

See Also