Settings
config.lua
cameraMode = {
["areaSize"] = 30.0, -- This value corresponds to the area where the camera can move.
["useKeyToOpen"] = true, -- This value is to open or close the menu with a key. true = able to use a key, false = not able to use a key.
["useCommandToOpen"] = true, -- This value is to open or close the menu with a command. true = able to use command, false = not able to use command.
["open_closeCamKey"] = "F5", -- This value corresponds to the key to open and close the menu (default -> F5).
["commandToOpen"] = "cameramode", -- This value corresponds to the command to open and close the menu.
["moveSpeed"] = 0.05, -- This value corresponds to the move speed that the camera will move.
["rotSpeed"] = 0.6, -- This value corresponds to the rotation speed that the camera will rotate.
["zoomSpeed"] = 1.0, -- This value corresponds to the zoom speed that the camera will zoom.
["mouseSpeed"] = 6, -- This value corresponds to the mouse speed that the camera will move with mouse.
["tiltLeftKey"] = 174, -- This value corresponds to the key to tilt to left side (default -> Left Arrow(174)). Look https://docs.fivem.net/docs/game-references/controls/ to change the key.
["tiltRightKey"] = 175, -- This value corresponds to the key to tilt to right side (default -> Right Arrow(175)). Look https://docs.fivem.net/docs/game-references/controls/ to change the key.
["tiltResetKey"] = 182, -- This value corresponds to the key to reset the tilt (default -> L(182)). Look https://docs.fivem.net/docs/game-references/controls/ to change the key.
["moveForwardKey"] = 32, -- This value corresponds to the key to move forward (default -> W(32)). Look https://docs.fivem.net/docs/game-references/controls/ to change the key.
["moveBackwardKey"] = 33, -- This value corresponds to the key to move backward (default -> S(33)). Look https://docs.fivem.net/docs/game-references/controls/ to change the key.
["moveLeftKey"] = 34, -- This value corresponds to the key to move left (default -> A(34)). Look https://docs.fivem.net/docs/game-references/controls/ to change the key.
["moveRightKey"] = 35, -- This value corresponds to the key to move right (default -> D(35)). Look https://docs.fivem.net/docs/game-references/controls/ to change the key.
["moveUpKey"] = 44, -- This value corresponds to the key to move up (default -> Q(44)). Look https://docs.fivem.net/docs/game-references/controls/ to change the key.
["moveDownKey"] = 46, -- This value corresponds to the key to move down (default -> E(46)). Look https://docs.fivem.net/docs/game-references/controls/ to change the key.
["zoomInKey"] = 15, -- This value corresponds to the key to zoom in (default -> Scrollwheel up(15)). Look https://docs.fivem.net/docs/game-references/controls/ to change the key.
["zoomOutKey"] = 14, -- This value corresponds to the key to zoom out (default -> Scrollwheel down(14)). Look https://docs.fivem.net/docs/game-references/controls/ to change the key.
["nextFilterKey"] = 172, -- This value corresponds to the key to next filter (default -> Arrow up(172)). Look https://docs.fivem.net/docs/game-references/controls/ to change the key.
["previousFilterKey"] = 173, -- This value corresponds to the key to previous filter (default -> Arrow down(173)). Look https://docs.fivem.net/docs/game-references/controls/ to change the key.
["on_offDOF"] = 344, -- This value corresponds to the key to enable or disable the DOF (default -> F11(344)). Look https://docs.fivem.net/docs/game-references/controls/ to change the key.
["show_hideUI"] = 74, -- This value corresponds to the key to show or hide the UI (default -> H(74)). Look https://docs.fivem.net/docs/game-references/controls/ to change the key.
}
Last updated