forked from BourbonWarfare/POTATO
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added HOT missile parameters from acemod/ACE3#10029
- Loading branch information
1 parent
47f4330
commit fa2c861
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
class ace_missileguidance { // reference https://github.com/acemod/ACE3/pull/10029 | ||
enabled = 1; | ||
|
||
pitchRate = 45; // Minium flap deflection for guidance | ||
yawRate = 45; // Maximum flap deflection for guidance | ||
|
||
canVanillaLock = 0; // Can this default vanilla lock? Only applicable to non-cadet mode | ||
|
||
showTrail = 1; | ||
|
||
// Guidance type for munitions | ||
defaultSeekerType = "SACLOS"; | ||
seekerTypes[] = { "SACLOS" }; | ||
|
||
defaultSeekerLockMode = "LOAL"; | ||
seekerLockModes[] = { "LOAL", "LOBL" }; | ||
|
||
defaultNavigationType = "Line"; | ||
navigationTypes[] = { "Line" }; | ||
|
||
lineGainP = 7; | ||
lineGainD = 6; | ||
|
||
initialPitch = 2; | ||
|
||
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 | ||
seekerAccuracy = 1; // seeker accuracy multiplier | ||
|
||
seekerMinRange = 75; | ||
seekerMaxRange = 4000; // Range from the missile which the seeker can visually search | ||
|
||
offsetFromCrosshair[] = { 0, 0, 0 }; // where the missile wants to stay in relation to the center of the crosshair. | ||
|
||
// Attack profile type selection | ||
defaultAttackProfile = "WIRE"; | ||
attackProfiles[] = {"WIRE"}; | ||
}; |