| Property | Value |
|---|---|
| Native Name | _INVALIDATE_VEHICLE_IDLE_CAM |
| Hash | 0x9E4CFFF989258472 |
| Return Type | void |
Description: Resets the vehicle idle camera timer. Calling this in a loop will disable the idle camera.
Examples
Citizen.CreateThread(function()
while true do
InvalidateIdleCam()
InvalidateVehicleIdleCam()
Wait(1000) --The idle camera activates after 30 second so we don't need to call this per frame
end
end)