Skip to content

Commit 9d429b8

Browse files
Hot - Update to new framework (#10029)
1 parent fad9244 commit 9d429b8

2 files changed

Lines changed: 23 additions & 4 deletions

File tree

addons/hot/CfgAmmo.hpp

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,27 +58,35 @@ class CfgAmmo {
5858
class ace_missileguidance {
5959
enabled = 1;
6060

61-
minDeflection = 0; // Minium flap deflection for guidance
62-
maxDeflection = 0.0030; // Maximum flap deflection for guidance
63-
incDeflection = 0.0005; // The incrmeent in which deflection adjusts.
61+
pitchRate = 45; // Minium flap deflection for guidance
62+
yawRate = 45; // Maximum flap deflection for guidance
6463

6564
canVanillaLock = 0; // Can this default vanilla lock? Only applicable to non-cadet mode
6665

66+
showTrail = 1;
67+
6768
// Guidance type for munitions
6869
defaultSeekerType = "SACLOS";
6970
seekerTypes[] = { "SACLOS" };
7071

7172
defaultSeekerLockMode = "LOAL";
7273
seekerLockModes[] = { "LOAL", "LOBL" };
7374

75+
defaultNavigationType = "Line";
76+
navigationTypes[] = { "Line" };
77+
78+
lineGainP = 7;
79+
lineGainD = 6;
80+
81+
initialPitch = 2;
82+
7483
seekLastTargetPos = 0; // seek last target position [if seeker loses LOS of target, continue to last known pos]
7584
seekerAngle = 30; // Angle from the shooter's view that can track the missile
7685
seekerAccuracy = 1; // seeker accuracy multiplier
7786

7887
seekerMinRange = 75;
7988
seekerMaxRange = 4000; // Range from the missile which the seeker can visually search
8089

81-
correctionDistance = 8; // distance from center of crosshair where missile slows down
8290
offsetFromCrosshair[] = { 0, 0, 0.5 }; // where the missile wants to stay in relation to the center of the crosshair.
8391

8492
// Attack profile type selection

addons/hot/CfgVehicles.hpp

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,22 @@ class CfgVehicles {
44
class Turrets;
55
};
66
class LT_01_base_F: Tank_F {
7+
class AnimationSources;
78
class Turrets: Turrets {
89
class MainTurret;
910
};
1011
};
1112
class LT_01_AT_base_F: LT_01_base_F {
13+
class AnimationSources: AnimationSources {
14+
class Missiles_revolving {
15+
source = "revolving";
16+
weapon = QGVAR(generic_launcher);
17+
};
18+
class Missiles_reloadMagazine {
19+
source = "reloadMagazine";
20+
weapon = QGVAR(generic_launcher);
21+
};
22+
};
1223
class Turrets: Turrets {
1324
class MainTurret: MainTurret {
1425
weapons[] = {"SmokeLauncher","HMG_127",QGVAR(generic_launcher)};

0 commit comments

Comments
 (0)