mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-04-19 10:46:40 +03:00
Re-add observer to UH1Y and AH6X
This fixes config errors for unknown animation sources for both vehicles. The turrets do not have thermal capabilities and this restores the missing co-pilot/observer seat in the UH1Y. Also I can't seem to get the turret on the AH6X to rotate, but if someone knows how please leave a comment or commit the changes. there's currently no overlay for the observer of the AH6X since it can't move I feel it's limited enough without an overlay like the UH1Y.
This commit is contained in:
@@ -28,22 +28,117 @@ class UH1Y_DZ: UH1_Base {
|
||||
weapons[] = {};
|
||||
magazines[] = {};
|
||||
fuelCapacity = 1333;
|
||||
class Turrets : Turrets {
|
||||
class Turrets: Turrets
|
||||
{
|
||||
class MainTurret: MainTurret
|
||||
{
|
||||
gunnerOpticsModel = "\ca\weapons\optika_SOFLAM";
|
||||
magazines[] = {"2000Rnd_762x51_M134"};
|
||||
};
|
||||
class RightDoorGun: RightDoorGun
|
||||
{
|
||||
gunnerOpticsModel = "\ca\weapons\optika_SOFLAM";
|
||||
visionMode[] = {"Normal","NVG"};
|
||||
magazines[] = {"2000Rnd_762x51_M134"};
|
||||
};
|
||||
class CoPilotObs: CoPilotObs
|
||||
{
|
||||
class OpticsIn
|
||||
{
|
||||
class Wide
|
||||
{
|
||||
opticsDisplayName = "W";
|
||||
initAngleX = 0;
|
||||
minAngleX = -30;
|
||||
maxAngleX = 30;
|
||||
initAngleY = 0;
|
||||
minAngleY = -100;
|
||||
maxAngleY = 100;
|
||||
initFov = 0.466;
|
||||
minFov = 0.466;
|
||||
maxFov = 0.466;
|
||||
visionMode[] = {"Normal","NVG"};
|
||||
thermalMode[] = {};
|
||||
gunnerOpticsModel = "\ca\weapons\optika_SOFLAM";
|
||||
};
|
||||
class Medium: Wide
|
||||
{
|
||||
opticsDisplayName = "M";
|
||||
initFov = 0.093;
|
||||
minFov = 0.093;
|
||||
maxFov = 0.093;
|
||||
gunnerOpticsModel = "\ca\weapons\optika_SOFLAM";
|
||||
};
|
||||
class Narrow: Wide
|
||||
{
|
||||
opticsDisplayName = "N";
|
||||
gunnerOpticsModel = "\ca\weapons\optika_SOFLAM";
|
||||
initFov = 0.029;
|
||||
minFov = 0.029;
|
||||
maxFov = 0.029;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
/*class Turrets : Turrets {
|
||||
class MainTurret : MainTurret {
|
||||
magazines[] = {"2000Rnd_762x51_M134"};
|
||||
};
|
||||
class RightDoorGun : RightDoorGun {
|
||||
magazines[] = {"2000Rnd_762x51_M134"};
|
||||
};
|
||||
};
|
||||
};*/
|
||||
};
|
||||
class UH1Y_DZE: UH1Y_DZ {
|
||||
class Turrets : Turrets {
|
||||
class MainTurret : MainTurret {
|
||||
class MainTurret: MainTurret
|
||||
{
|
||||
gunnerOpticsModel = "\ca\weapons\optika_SOFLAM";
|
||||
magazines[] = {};
|
||||
};
|
||||
class RightDoorGun : RightDoorGun {
|
||||
class RightDoorGun: RightDoorGun
|
||||
{
|
||||
gunnerOpticsModel = "\ca\weapons\optika_SOFLAM";
|
||||
visionMode[] = {"Normal","NVG"};
|
||||
magazines[] = {};
|
||||
};
|
||||
class CoPilotObs: CoPilotObs
|
||||
{
|
||||
class OpticsIn
|
||||
{
|
||||
class Wide
|
||||
{
|
||||
opticsDisplayName = "W";
|
||||
initAngleX = 0;
|
||||
minAngleX = -30;
|
||||
maxAngleX = 30;
|
||||
initAngleY = 0;
|
||||
minAngleY = -100;
|
||||
maxAngleY = 100;
|
||||
initFov = 0.466;
|
||||
minFov = 0.466;
|
||||
maxFov = 0.466;
|
||||
visionMode[] = {"Normal","NVG"};
|
||||
thermalMode[] = {};
|
||||
gunnerOpticsModel = "\ca\weapons\optika_SOFLAM";
|
||||
};
|
||||
class Medium: Wide
|
||||
{
|
||||
opticsDisplayName = "M";
|
||||
initFov = 0.093;
|
||||
minFov = 0.093;
|
||||
maxFov = 0.093;
|
||||
gunnerOpticsModel = "\ca\weapons\optika_SOFLAM";
|
||||
};
|
||||
class Narrow: Wide
|
||||
{
|
||||
opticsDisplayName = "N";
|
||||
gunnerOpticsModel = "\ca\weapons\optika_SOFLAM";
|
||||
initFov = 0.029;
|
||||
minFov = 0.029;
|
||||
maxFov = 0.029;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user