Pinefang Posted May 29, 2014 Posted May 29, 2014 Can anyone tell me if I can increase the horizontal FOV from 120deg to 180degs and how to do it?
Pman Posted May 29, 2014 Posted May 29, 2014 Simple lua edit Copy the server.lua from here : \DCS World\Config\View into : C:\Users\XXXX\Saved Games\DCS\Config\View (Where XXX is your user name, you may have to make the view folder) And then edit the first part --------------------- function default_fighter_player(t) local res = { CameraViewAngleLimits = {20.000000,140.000000}, CameraAngleRestriction = {false ,90.000000,0.500000}, EyePoint = {0.05 ,0.000000 ,0.000000}, limits_6DOF = {x = {-0.050000,0.4500000},y ={-0.300000,0.100000},z = {-0.220000,0.220000},roll = 90.000000}, Allow360rotation = false, CameraAngleLimits = {200,-80.000000,110.000000}, ShoulderSize = 0.2, -- move body when azimuth value more then 90 degrees } -------------------- to read --------------------- function default_fighter_player(t) local res = { CameraViewAngleLimits = {20.000000,180.000000}, CameraAngleRestriction = {false ,90.000000,0.500000}, EyePoint = {0.05 ,0.000000 ,0.000000}, limits_6DOF = {x = {-0.050000,0.4500000},y ={-0.300000,0.100000},z = {-0.220000,0.220000},roll = 90.000000}, Allow360rotation = false, CameraAngleLimits = {200,-80.000000,110.000000}, ShoulderSize = 0.2, -- move body when azimuth value more then 90 degrees } ------------------
Pinefang Posted May 31, 2014 Author Posted May 31, 2014 Thanks PMan unfortunatly that didn't do what I had hoped. It makes total since to me that that would have done it but I didn't see any difference.
Recommended Posts