ACE3/addons/spectator/XEH_preInit.sqf

42 lines
813 B
Plaintext
Raw Normal View History

2015-06-29 02:34:21 +00:00
#include "script_component.hpp"
ADDON = false;
2015-07-15 11:11:19 +00:00
PREP(handleCamera);
PREP(handleCompass);
2015-07-15 11:03:54 +00:00
PREP(handleInterface);
2015-07-04 23:49:47 +00:00
PREP(handleKilled);
2015-07-15 11:11:19 +00:00
PREP(handleMouse);
2015-07-04 23:49:47 +00:00
PREP(handleRespawn);
2015-07-19 15:35:53 +00:00
PREP(handleToolbar);
2015-07-18 15:20:19 +00:00
PREP(handleUnits);
2015-07-17 15:02:38 +00:00
PREP(moduleSpectatorSettings);
2015-07-20 21:45:28 +00:00
PREP(setCameraAttributes);
PREP(setSpectator);
2015-07-20 21:45:11 +00:00
PREP(transitionCamera);
PREP(toggleInterface);
2015-07-15 13:58:38 +00:00
PREP(updateUnits);
2015-07-18 14:52:44 +00:00
// Permanent variables
GVAR(camMode) = 0;
GVAR(camPan) = 0;
2015-07-20 21:45:11 +00:00
GVAR(camPos) = [worldSize * 0.5,worldSize * 0.5,20];
2015-07-19 15:35:53 +00:00
GVAR(camSpeed) = 1;
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-19 15:35:53 +00:00
GVAR(camZoom) = 1.3;
2015-06-29 02:34:21 +00:00
2015-07-18 14:42:07 +00:00
GVAR(showComp) = true;
GVAR(showHelp) = true;
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) = [];
2015-07-04 23:10:01 +00:00
ADDON = true;