Disable alt flightmode for now

This commit is contained in:
PabstMirror 2024-05-23 23:58:54 -05:00
parent 3f512d93f7
commit e142d383ae
2 changed files with 8 additions and 4 deletions

View File

@ -25,7 +25,11 @@ _stateParams params ["", "", "_attackProfileStateParams"];
TRACE_6("copperhead_onfired",_projectile,_trajectorySetting,_delaySetting,_laserCodeA,_laserCodeB,_laserCodeC);
// Set trajectory from first dial
private _trajectoryShaped = _trajectorySetting >= 3; // 1-2 is ballisitic, 3-8 is shaped
// Changing path without active feedback causes problems on current missile guidance
// probably due to poor vector change in ace_missileguidance_fnc_guidancePFH, disable for now
private _trajectoryShaped = false;
// private _trajectoryShaped = _trajectorySetting >= 3; // 1-2 is ballisitic, 3-8 is shaped
_attackProfileStateParams set [0, _trajectoryShaped];
// set var for submuntion's deployCondition from second dial

View File

@ -2,9 +2,9 @@
#define COMPONENT_BEAUTIFIED Cannon Launched Guided Projectiles
#include "\z\ace\addons\main\script_mod.hpp"
#define DEBUG_MODE_FULL
#define DISABLE_COMPILE_CACHE
#define ENABLE_QUICK_TESTING
// #define DEBUG_MODE_FULL
// #define DISABLE_COMPILE_CACHE
// #define ENABLE_QUICK_TESTING
// #define ENABLE_PERFORMANCE_COUNTERS
#include "\z\ace\addons\main\script_macros.hpp"