Skip to content

Commit

Permalink
Fixed Real First Person
Browse files Browse the repository at this point in the history
  • Loading branch information
Veloscocity authored and Regynate committed Oct 26, 2023
1 parent cb79715 commit bcacc57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ChaosMod/Effects/db/Screen/ScreenRealFirstPerson.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ static void SetupCamera()
Vector3 boneCoords = GET_PED_BONE_COORDS(playerPed, boneId, 0, 0, 0);
eCamera = CREATE_CAM_WITH_PARAMS("DEFAULT_SCRIPTED_CAMERA", boneCoords.x, boneCoords.y, boneCoords.z, 0, 0, 0, 60,
false, 2);
ATTACH_CAM_TO_PED_BONE(eCamera, playerPed, GET_PED_BONE_INDEX(playerPed, boneId), 0.1f, 0.f, 0.2f, false);
ATTACH_CAM_TO_PED_BONE(eCamera, playerPed, boneId, 0.f, 0.f, 0.f, false);

SET_CAM_NEAR_CLIP(eCamera, 0.2);
SET_CAM_AFFECTS_AIMING(eCamera, false);
Expand Down

0 comments on commit bcacc57

Please sign in to comment.