Full View config.camera.lua

Preview File Updated: v1.0.1 - 16.01.2024

-- β–„β–€β–€ β–„β–€β–„ β–ˆβ–„ β–„β–ˆ β–ˆβ–ˆβ–€ β–ˆβ–€β–„ β–„β–€β–„
-- β–€β–„β–„ β–ˆβ–€β–ˆ β–ˆ β–€ β–ˆ β–ˆβ–„β–„ β–ˆβ–€β–„ β–ˆβ–€β–ˆ

-- @UseCamera: Possibility to use cameras
Config.UseCamera = true

-- @CameraAbilityNightVision: Ability to run night vision on cameras
Config.CameraAbilityNightVision = true

Config.Camera = {
    FOV = 80.0, -- Camera Field of View
    MaxZoom = 30,
    MinZoom = 100,
    MaxUpRotation = 10,
    MaxDownRotation = -45,
    RotateSpeed = 0.3, -- Camera Rotation Speed
    Controls = {
        Up = 32, -- W
        Down = 33, -- S
        Left = 34, -- A
        Right = 35, -- D
        ZoomIn = 96, -- Scroll Up
        ZoomOut = 97, -- Scroll Down
        Previous = 174, -- Left Arrow
        Next = 175, -- Right Arrow
        NightVision = 38, -- E
        Exit = 194 -- BACKSPACE
    }
}

Last updated