Cam::setDofParam

From RAGE Multiplayer Wiki

Client-Side
Function

 JavaScript



JavaScript Syntax


Summary

Sets a specific Depth of Field (DOF) parameter for a specified camera.

Syntax

mp.game.cam.setDofParam(cameraHandle, paramHash, value);

Required Parameters

  • cameraHandle: number - The handle of the camera.
  • paramHash: number - The hash of the DOF parameter to set.
  • value: bool - The value to assign to the parameter.

Return Value

  • undefined

Example

// Set a DOF parameter for a specific camera
const cameraHandle = mp.cameras.new("default").handle;
const dofParamHash = mp.game.joaat("dof_blur_amount");
const newValue = 1.0;

mp.game.cam.setDofParam(cameraHandle, dofParamHash, newValue);
mp.gui.chat.push("Camera DOF blur amount updated.");


See Also