ACE3/addons/sdb/CfgAmmo.hpp
Brandon Danyluk 038c82a489 better JDAM simulation
Attack heading and impact angle now are followed better
2021-06-11 20:37:36 -06:00

41 lines
1.3 KiB
C++

class CfgAmmo {
class ammo_Bomb_SDB;
class GVAR(sdb): ammo_Bomb_SDB {
author = "Brandon (TCVM)";
maneuvrability = 0; // no maneuvrability so that default guidance doesnt work
class ace_missileguidance {
enabled = 1;
pitchRate = 15;
yawRate = 20;
canVanillaLock = 0; // Can this default vanilla lock? Only applicable to non-cadet mode
// Guidance type for munitions
defaultSeekerType = "GPS";
seekerTypes[] = { "GPS" };
defaultSeekerLockMode = "LOBL";
seekerLockModes[] = { "LOBL" };
defaultNavigationType = "LINE";
navigationTypes[] = { "LINE" };
lineGainP = 50;
lineGainD = 1;
seekLastTargetPos = 0; // seek last target position [if seeker loses LOS of target, continue to last known pos]
seekerAngle = 60; // Angle from the shooter's view that can track the missile
seekerAccuracy = 1; // seeker accuracy multiplier
seekerMinRange = 5;
seekerMaxRange = 4000; // Range from the missile which the seeker can visually search
// Attack profile type selection
defaultAttackProfile = "JDAM";
attackProfiles[] = {"JDAM"};
};
};
};