From 2d4c0eac611120ab0f4d3f057d492864f557b87a Mon Sep 17 00:00:00 2001 From: vbawol Date: Thu, 8 Oct 2015 17:54:52 -0500 Subject: [PATCH] disable thermal in commander first person view --- Changelogs/0.3.4.0.txt | 2 +- Sources/epoch_config/Configs/CfgVehicles.hpp | 57 +++++++++++++++++++- 2 files changed, 57 insertions(+), 2 deletions(-) diff --git a/Changelogs/0.3.4.0.txt b/Changelogs/0.3.4.0.txt index f3245056..fb036676 100644 --- a/Changelogs/0.3.4.0.txt +++ b/Changelogs/0.3.4.0.txt @@ -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. diff --git a/Sources/epoch_config/Configs/CfgVehicles.hpp b/Sources/epoch_config/Configs/CfgVehicles.hpp index aba2f99e..9e3f0285 100644 --- a/Sources/epoch_config/Configs/CfgVehicles.hpp +++ b/Sources/epoch_config/Configs/CfgVehicles.hpp @@ -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;