ACE3/addons/spectator/XEH_preInit.sqf

45 lines
920 B
Plaintext
Raw Normal View History

2015-06-29 02:34:21 +00:00
#include "script_component.hpp"
ADDON = false;
PREP_RECOMPILE_START;
2016-02-22 14:20:36 +00:00
#include "XEH_PREP.hpp"
PREP_RECOMPILE_END;
2015-07-18 14:52:44 +00:00
// Reset the stored display
SETUVAR(GVAR(interface),displayNull);
2015-07-18 14:52:44 +00:00
// Permanent variables
2015-07-21 12:31:13 +00:00
GVAR(availableModes) = [0,1,2];
GVAR(availableSides) = [west,east,resistance,civilian];
2015-07-21 12:31:13 +00:00
GVAR(availableVisions) = [-2,-1,0,1];
GVAR(camAgent) = objNull;
GVAR(camDistance) = 10;
2015-07-18 14:52:44 +00:00
GVAR(camMode) = 0;
GVAR(camPan) = 0;
2015-07-21 17:07:55 +00:00
GVAR(camPos) = ATLtoASL [worldSize * 0.5, worldSize * 0.5, 20];
GVAR(camSpeed) = 1.5;
2015-07-20 22:20:05 +00:00
GVAR(camTilt) = -10;
2015-07-18 14:52:44 +00:00
GVAR(camUnit) = objNull;
2015-07-21 10:59:20 +00:00
GVAR(camVision) = -2;
2015-07-21 21:56:47 +00:00
GVAR(camZoom) = 1.25;
2015-06-29 02:34:21 +00:00
GVAR(interrupts) = [];
GVAR(isSet) = false;
2015-07-18 14:42:07 +00:00
GVAR(showComp) = true;
GVAR(showHelp) = true;
2015-07-24 16:23:25 +00:00
GVAR(showIcons) = true;
2015-07-18 14:42:07 +00:00
GVAR(showInterface) = true;
GVAR(showMap) = false;
GVAR(showTool) = true;
GVAR(showUnit) = true;
2015-07-16 10:15:33 +00:00
GVAR(unitList) = [];
GVAR(unitBlacklist) = [];
GVAR(unitWhitelist) = [];
GVAR(groupList) = [];
2015-07-16 10:15:33 +00:00
2015-07-04 23:10:01 +00:00
ADDON = true;