ACE3/addons/vector/XEH_preInit.sqf

45 lines
965 B
Plaintext
Raw Normal View History

2015-01-14 06:24:17 +00:00
#include "script_component.hpp"
2015-01-29 07:38:46 +00:00
ADDON = false;
2015-01-15 06:18:57 +00:00
PREP(clearDisplay);
PREP(convertToTexturesDegree);
PREP(convertToTexturesDistance);
2015-01-17 21:49:06 +00:00
PREP(convertToTexturesFOS);
2015-03-12 17:57:44 +00:00
PREP(dataTransfer);
PREP(showCenter);
PREP(showP1);
PREP(onKeyDown);
PREP(onKeyHold);
PREP(onKeyUp);
2015-01-15 06:18:57 +00:00
PREP(getDirection);
PREP(getDistance);
2015-01-15 16:24:19 +00:00
PREP(getHeightDistance);
2015-01-15 18:01:27 +00:00
PREP(getRelativeAzimuthDistance);
PREP(getRelativeDistance);
2015-01-17 18:25:12 +00:00
PREP(getRelativeHeightLength);
2015-04-05 20:18:28 +00:00
PREP(getFallOfShot);
2015-01-15 06:18:57 +00:00
PREP(showAzimuth);
2015-01-15 15:40:06 +00:00
PREP(showAzimuthInclination);
2015-01-15 16:24:19 +00:00
PREP(showHeightDistance);
2015-01-15 06:18:57 +00:00
PREP(showDistance);
2015-01-15 18:01:27 +00:00
PREP(showRelativeAzimuthDistance);
PREP(showRelativeDistance);
2015-01-17 18:25:12 +00:00
PREP(showRelativeHeightLength);
2015-04-05 20:18:28 +00:00
PREP(showFallOfShot);
2015-01-21 20:15:51 +00:00
PREP(showText);
2015-01-21 21:52:39 +00:00
PREP(nextMode);
PREP(adjustBrightness);
2015-01-21 22:05:19 +00:00
PREP(showReticle);
2015-01-15 06:18:57 +00:00
2015-01-15 15:21:47 +00:00
GVAR(holdKeyHandler) = -1;
2015-01-15 06:18:57 +00:00
GVAR(isKeyDownAzimuth) = false;
GVAR(isKeyDownDistance) = false;
GVAR(keyDownTimeAzimuth) = -1;
GVAR(keyDownTimeDistance) = -1;
GVAR(useMil) = false;
GVAR(useFeet) = false;
2015-01-21 21:52:39 +00:00
GVAR(modeReticle) = 0;
2015-01-29 07:38:46 +00:00
ADDON = true;