Native referenceFiveM

POINT_CAM_AT_COORD

0xF75497BB865F0803 CAM
FUNCTION SIGNATURE
void POINT_CAM_AT_COORD(Cam cam, float x, float y, float z);
Property Value
Native Name POINT_CAM_AT_COORD
Hash 0xF75497BB865F0803
Return Type void
Parameters cam (Cam), x (float), y (float), z (float)

Examples

local coords = vector3(402.99, -998.02, -99.00)
local cam = CreateCamWithParams("DEFAULT_SCRIPTED_CAMERA", coords.x, coords.y, coords.z, 0.00, 0.00, 0.00, 50.00, false, 0)
PointCamAtCoord(cam, coords.x, coords.y, coords.z)
Back to CAM