tweak HOT guidance params

This commit is contained in:
Brandon Danyluk
2021-05-08 03:00:51 -06:00
parent 175652456b
commit ef529d286f
2 changed files with 4 additions and 4 deletions

View File

@ -74,8 +74,8 @@ class CfgAmmo {
defaultNavigationType = "Line";
navigationTypes[] = { "Line" };
lineGainP = 20;
lineGainD = 18;
lineGainP = 5;
lineGainD = 5;
seekLastTargetPos = 0; // seek last target position [if seeker loses LOS of target, continue to last known pos]
seekerAngle = 30; // Angle from the shooter's view that can track the missile
@ -84,7 +84,7 @@ class CfgAmmo {
seekerMinRange = 75;
seekerMaxRange = 4000; // Range from the missile which the seeker can visually search
correctionDistance = 8; // distance from center of crosshair where missile slows down
correctionDistance = 15; // distance from center of crosshair where missile slows down
offsetFromCrosshair[] = { 0, 0, 0.5 }; // where the missile wants to stay in relation to the center of the crosshair.
// Attack profile type selection

View File

@ -49,6 +49,6 @@ if (_seekerTargetPos isEqualTo [0, 0, 0] || { _distanceToProjectile < _seekerMin
// return position 50m infront of projectile and a bit up to get out of the way of the ground
_projectilePos vectorAdd (_projectile vectorModelToWorld [0, 50, 3])
};
systemChat str _crosshairOffset;
_seekerTargetPos vectorAdd _crosshairOffset