|
发表于 2010-1-10 17:46:22
|
显示全部楼层
回复 15# oscarnobel 的帖子
帮我 该一下吧 我想要 左边是 TV右边是 座舱
TV是15 1024*768的显示器 主显示器是 1680*1050
options =
{
["views"] =
{
["cockpit"] =
{
["mirrors"] = false,
["reflections"] = false,
["avionics"] = 1,
["russianHud"] = false,
}, -- end of ["cockpit"]
}, -- end of ["views"]
["difficulty"] =
{
["padlock"] = true,
["easyRadar"] = true,
["enemies"] = true,
["setGlobal"] = false,
["immortal"] = false,
["geffect"] = "none",
["easyFlight"] = true,
["permitCrash"] = true,
["radio"] = true,
["tips"] = true,
["fuel"] = false,
["aftSwitching"] = false,
["cockpitLanguage"] = "english",
["units"] = "imperial",
["externalViews"] = true,
["hud"] = true,
["myPlane"] = true,
["iconsTheme"] = "nato",
["map"] = true,
["weapons"] = false,
["allies"] = true,
["labels"] = false,
}, -- end of ["difficulty"]
["audio"] =
{
["wind"] = 100,
["radio"] = 100,
["musicEn"] = false,
["engines"] = 100,
["soundEn"] = true,
["effects"] = 100,
["music"] = 50,
["radioSpeech"] = true,
["warnings"] = 100,
["volume"] = 100,
["inCockpit"] = 100,
["mech"] = 100,
["subtitles"] = true,
["gui"] = 50,
}, -- end of ["audio"]
["graphics"] =
{
["multiMonitorSetup"] = "shkval+camera",
["color"] = "32",
["heatBlr"] = 0,
["scenes"] = "medium",
["water"] = 2,
["fullScreen"] = false,
["visibRange"] = "Medium",
["aspect"] = 2.5,
["textures"] = 1,
["shadows"] = 2,
["display_mode"] =
{
["avi"] =
{
["bpp"] = 32,
["resolution"] = "640x480",
["full_screen"] = false,
["aspect"] = 1.333333333,
["height"] = 480,
["width"] = 640,
}, -- end of ["avi"]
}, -- end of ["display_mode"]
["effects"] = 3,
["lights"] = 2,
["haze"] = 1,
["terrPrld"] = "20",
["height"] = 1024,
["resolution"] = "2560x1024",
["civTraffic"] = 0,
["width"] = 2560,
}, -- end of ["graphics"]
} -- end of options
--------------------------------------------------------------分割----
Description = 'Shkval on the left monitor,ABRIS on the right and camera on the center'
Viewports =
{
Center =
{
x = screen.width / 3;
y = 0;
width = screen.width / 3;
height = screen.height;
viewDx = 0;
viewDy = 0;
aspect = screen.aspect / 3;
}
}
Shkval =
{
x = 0;
y = 0;
width = screen.width / 3;
height = screen.height;
}
ABRIS =
{
x = screen.width *(2 / 3);
y = 0;
width = screen.width / 3;
height = screen.height;
} |
|