disable thermal in commander first person view

This commit is contained in:
vbawol 2015-10-08 17:54:52 -05:00
parent 822db1ae5e
commit 2d4c0eac61
2 changed files with 57 additions and 2 deletions

View File

@ -31,7 +31,7 @@ Server:
[Fixed] Added missing prices for female vests.
[Fixed] Error Generic error in expression in EPOCH_server_repairVehicle.
[Changed] Base building maintain option now also maintains storage devices.
[Changed] Vehicle spawn config that controls how many vehicles can spawn at different location types. See vehicleSpawnTypes array in the Map config in the server settings pbo.
[Changed] Moved vehicle spawn config that controls how many vehicles can spawn at different location types to settings pbo. See new vehicleSpawnTypes array in the (WorldName).hpp config.
[Changed] Use new sort command instead of BIS_fncSortBy.
[Changed] Use new worldSize command as default if maps worldSize setting in CfgEpoch does not exist.
[Info] Removed old .bikey and added new one for 0340.

View File

@ -1927,10 +1927,12 @@ class CfgVehicles
class TransportItems{};
class Eventhandlers{};
};
class I_MRAP_03_F;
class I_MRAP_03_EPOCH : I_MRAP_03_F
{
author = "$STR_A3_Bohemia_Interactive";
_generalMacro = "I_MRAP_03_EPOCH";
scope = 2;
crew = "";
side = 3;
@ -1940,6 +1942,59 @@ class CfgVehicles
typicalCargo[] = {};
class TransportItems{};
class Eventhandlers{};
class RenderTargets
{
class commander_display
{
renderTarget = "rendertarget0";
class CameraView1
{
pointPosition = "PIP0_pos";
pointDirection = "PIP0_dir";
renderVisionMode = 0;
renderQuality = 2;
fov = 0.5;
};
};
class driver_display
{
renderTarget = "rendertarget2";
class CameraView1
{
pointPosition = "PIP2_pos";
pointDirection = "PIP2_dir";
renderVisionMode = 0;
renderQuality = 2;
fov = 0.6;
};
};
class mirrorL
{
renderTarget = "rendertarget4";
class CameraView1
{
pointPosition = "PIP4_pos";
pointDirection = "PIP4_dir";
renderVisionMode = 4;
renderQuality = 2;
fov = 0.35;
};
};
class mirrorR
{
renderTarget = "rendertarget5";
class CameraView1
{
pointPosition = "PIP5_pos";
pointDirection = "PIP5_dir";
renderVisionMode = 4;
renderQuality = 2;
fov = 0.35;
};
};
};
};
class B_Truck_01_transport_F;