Fix config (#6905)

This commit is contained in:
Dystopian 2019-04-01 18:45:36 +04:00 committed by PabstMirror
parent b907c9d547
commit db6dadb78f
3 changed files with 28 additions and 7 deletions

View File

@ -1,6 +0,0 @@
class CfgInGameUI {
class Cursor {
weapon = ""; // "\A3\ui_f\data\igui\cfg\cursors\weapon_ca.paa";
};
};

View File

@ -0,0 +1,27 @@
#define EMPTY_TEXTURE(weapon) \
class weapon: default { \
texture = ""; \
}
class CfgWeaponCursors {
class default;
EMPTY_TEXTURE(arifle);
EMPTY_TEXTURE(mg);
EMPTY_TEXTURE(srifle);
EMPTY_TEXTURE(smg);
EMPTY_TEXTURE(hgun);
EMPTY_TEXTURE(sgun);
EMPTY_TEXTURE(gl);
EMPTY_TEXTURE(throw);
EMPTY_TEXTURE(put);
EMPTY_TEXTURE(missile);
EMPTY_TEXTURE(rocket);
EMPTY_TEXTURE(bomb);
EMPTY_TEXTURE(cannon);
EMPTY_TEXTURE(mortar);
EMPTY_TEXTURE(coil);
EMPTY_TEXTURE(laserdesignator);
// if these classes have empty texture the crosshair appears
// EMPTY_TEXTURE(cursorAim);
// EMPTY_TEXTURE(cursorAimOn);
};

View File

@ -15,4 +15,4 @@ class CfgPatches {
}; };
}; };
#include "CfgInGameUI.hpp" #include "CfgWeaponCursors.hpp"