| Property | Value |
|---|---|
| Native Name | INVALIDATE_IDLE_CAM |
| Hash | 0xF4F2C0D4EE209E20 |
| Return Type | void |
Description: Resets the idle camera timer. Calling that in a loop once every few seconds is enough to disable the idle cinematic 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)