HU/getCameraClip

From Multi Theft Auto: Wiki
Revision as of 13:51, 13 August 2018 by Surge (talk | contribs) (Created page with "{{Client function hu}} __NOTOC__ {{New feature/item|3.0141|1.4.1|6949|This function checks if the camera will "collide" with any objects or vehicles in its way. Read more ab...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This function checks if the camera will "collide" with any objects or vehicles in its way. Read more about this here.

Syzintaxis

bool, bool getCameraClip() 

OOP Syntax Help! I don't understand this!

Method: Camera.getClip(...)
Counterpart: setCameraClip


Visszatérési érték

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

Példa

Ez a function a klip állapotát ellenőrzi.

function checkClipStatus()
  local obj, veh = Camera.getClip()
  outputChatBox ("Your camera can" .. (veh and "" or "not") .. "see the vehicle interior at the moment!",255,0,0,false)
  outputChatBox ("Your camera can" .. (obj and "" or "not") .. "collide with objects at the moment!",255,0,0,false)
end
addEventHandler("clipstatus",checkClipStatus)

Lásd még

Fordította

  • Surge