24 lines
779 B
Lua
24 lines
779 B
Lua
--[[
|
|
______ _ ____ ____ _ __
|
|
/_ __/___ ____ ___ ____ ___ __ _( )_____ / __ \/ __ \ | / /
|
|
/ / / __ \/ __ `__ \/ __ `__ \/ / / /// ___/ / /_/ / / / / | / /
|
|
/ / / /_/ / / / / / / / / / / / /_/ / (__ ) / ____/ /_/ /| |/ /
|
|
/_/ \____/_/ /_/ /_/_/ /_/ /_/\__, / /____/ /_/ \____/ |___/
|
|
/____/
|
|
-- Developed by https://github.com/tommy141x ]]
|
|
|
|
-- Command that toggles the POV
|
|
commandName = "pov"
|
|
|
|
-- Camera FOV
|
|
camFOV = 80.0
|
|
|
|
-- Camera offset from the players body
|
|
camOffsetX = 0.05
|
|
camOffsetY = 0.05
|
|
camOffsetZ = 0.15
|
|
|
|
-- Camera offset from the players body when reversing in a vehicle and holding C (reverse camera)
|
|
reverseCamOffsetX = -0.29
|
|
reverseCamOffsetY = -0.29
|
|
reverseCamOffsetZ = 0.2 |