360 camera configuration
1. Cam360
This option is used to enable or disable the 360 camera
Config.Cam360 = true
When set to true, you can use the command or keybinding to change your camera to 360 camera for better parking experience
Config.Cam360 = false
This will turn off the custom 360 camera mode
2. Cam360CMD
This option is used to set the camera mode command
Config.Cam360CMD = "360"
With this option, the script register /360
command which will change the camera mode between default camera and 360 camera
Config.Cam360CMD = "cam"
With this option, the script register /cam
command which will change the camera mode between default camera and 360 camera
3. Cam360Key
This option is used to set the camera mode keybinding
There is also an alternative way to change the keybinding for all players, no matter they were previously connected or not!
With changing the Cam360Key
, also change the Cam360CMD
.
Config.Cam360Key = "F9"
With this option, the script register F9
key which will change the camera mode between default camera and 360 camera
Config.Cam360Key = "F10"
With this option, the script register F10
key which will change the camera mode between default camera and 360 camera
4. Cam360AnimDur
This option is used to change the duration of the camera mode change animation
Config.Cam360AnimDur = 500
With this option, fade animations will take 500 milliseconds
Config.Cam360AnimDur = 1000
With this option, fade animations will take 1000 milliseconds
5. Cam360FOV
This option is used to change the camera's FIELD OF VIEW
Config.Cam360FOV = 90.0
With this option, the camera's field of view will be 90.0.
6. Cam360Offset
This option is used to change the camera offset
Config.Cam360Offset = vector3(0, 0, 7)
With this option, the camera moves up 7
meters from the vehicle.
Config.Cam360Offset = vector3(x, y, z)
With this option, the camera will move:
x
meters from the vehicle to the left or right
y
meters from the vehicle forward or backward
z
meters from the vehicle up or down, respectively.
Last updated