mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
8763184b6a
* Dragon work cleanup remove unused p3ds add pos_gunner_dir/pos_gunner to static add [csw] prefix to arsenal version add sight interaction icons * Update fnc_staticWeaponInit_unloadExtraMags.sqf * ace_rearm compat allows pulling carry mags out of rearm trucks * Update fnc_ai_handleFired.sqf * Re-add 3den attributes * cleanup and move A2 staticweapon strings to ace_csw
29 lines
693 B
C++
29 lines
693 B
C++
#define COMPONENT csw
|
|
#define COMPONENT_BEAUTIFIED Crew-Served Weapons
|
|
#include "\z\ace\addons\main\script_mod.hpp"
|
|
|
|
// #define FAST_PROGRESSBARS
|
|
// #define DEBUG_MODE_FULL
|
|
// #define DISABLE_COMPILE_CACHE
|
|
// #define ENABLE_PERFORMANCE_COUNTERS
|
|
|
|
#ifdef DEBUG_ENABLED_CSW
|
|
#define DEBUG_MODE_FULL
|
|
#endif
|
|
|
|
#ifdef DEBUG_SETTINGS_CSW
|
|
#define DEBUG_SETTINGS DEBUG_SETTINGS_CSW
|
|
#endif
|
|
|
|
#include "\z\ace\addons\main\script_macros.hpp"
|
|
|
|
|
|
#define DISTANCE_FROM_GUN 1.5
|
|
#define RELATIVE_DIRECTION(direction) [DISTANCE_FROM_GUN, direction]
|
|
|
|
#ifdef FAST_PROGRESSBARS
|
|
#define TIME_PROGRESSBAR(X) ((X) * 0.075)
|
|
#else
|
|
#define TIME_PROGRESSBAR(X) ((X) * GVAR(progressBarTimeCoefficent))
|
|
#endif
|