mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
disable thermal in commander first person view
This commit is contained in:
parent
822db1ae5e
commit
2d4c0eac61
@ -31,7 +31,7 @@ Server:
|
|||||||
[Fixed] Added missing prices for female vests.
|
[Fixed] Added missing prices for female vests.
|
||||||
[Fixed] Error Generic error in expression in EPOCH_server_repairVehicle.
|
[Fixed] Error Generic error in expression in EPOCH_server_repairVehicle.
|
||||||
[Changed] Base building maintain option now also maintains storage devices.
|
[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 sort command instead of BIS_fncSortBy.
|
||||||
[Changed] Use new worldSize command as default if maps worldSize setting in CfgEpoch does not exist.
|
[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.
|
[Info] Removed old .bikey and added new one for 0340.
|
||||||
|
@ -1927,10 +1927,12 @@ class CfgVehicles
|
|||||||
class TransportItems{};
|
class TransportItems{};
|
||||||
class Eventhandlers{};
|
class Eventhandlers{};
|
||||||
};
|
};
|
||||||
|
|
||||||
class I_MRAP_03_F;
|
class I_MRAP_03_F;
|
||||||
class I_MRAP_03_EPOCH : 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;
|
scope = 2;
|
||||||
crew = "";
|
crew = "";
|
||||||
side = 3;
|
side = 3;
|
||||||
@ -1940,6 +1942,59 @@ class CfgVehicles
|
|||||||
typicalCargo[] = {};
|
typicalCargo[] = {};
|
||||||
class TransportItems{};
|
class TransportItems{};
|
||||||
class Eventhandlers{};
|
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;
|
class B_Truck_01_transport_F;
|
||||||
|
Loading…
Reference in New Issue
Block a user