mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
tweak HOT guidance params
This commit is contained in:
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user