mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fix NLAW
This commit is contained in:
parent
cf40622b52
commit
4f8ea33e36
@ -16,10 +16,10 @@ Seeker Types:
|
||||
|
||||
Navigation Types:
|
||||
GBU-12 - Simple ProNav Guidance
|
||||
NLAW - LOS Guidance
|
||||
Dragon - LOS Guidance
|
||||
Metis - LOS Guidance
|
||||
HOT - LOS Guidance
|
||||
X NLAW - LOS Guidance
|
||||
X Dragon - LOS Guidance
|
||||
X Metis - LOS Guidance
|
||||
X HOT - LOS Guidance
|
||||
|
||||
Javelin - Pro Nav
|
||||
Hellfire - Pro Nav
|
||||
|
@ -6,9 +6,8 @@ class CfgAmmo {
|
||||
class ace_missileguidance {
|
||||
enabled = 1;
|
||||
|
||||
minDeflection = 0.0005; // Minium flap deflection for guidance
|
||||
maxDeflection = 0.01; // Maximum flap deflection for guidance
|
||||
incDeflection = 0.0005; // The incrmeent in which deflection adjusts.
|
||||
pitchRate = 20; // Minium flap deflection for guidance
|
||||
yawRate = 20; // Maximum flap deflection for guidance
|
||||
|
||||
canVanillaLock = 0; // Can this default vanilla lock? Only applicable to non-cadet mode
|
||||
|
||||
@ -19,6 +18,9 @@ class CfgAmmo {
|
||||
defaultSeekerLockMode = "LOBL";
|
||||
seekerLockModes[] = {"LOBL"};
|
||||
|
||||
defaultNavigationType = "LineOfSight";
|
||||
navigationTypes[] = { "LineOfSight" };
|
||||
|
||||
seekLastTargetPos = 0; // seek last target position [if seeker loses LOS of target, continue to last known pos]
|
||||
seekerAngle = 45; // Angle in front of the missile which can be searched
|
||||
seekerAccuracy = 1; // seeker accuracy multiplier
|
||||
|
Loading…
Reference in New Issue
Block a user