mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
9291d9b714
* Hide cursor when blocking inputs * Update addons/common/DisableMouseDialog.hpp Co-authored-by: PabstMirror <pabstmirror@gmail.com> * Update addons/common/functions/fnc_disableUserInput.sqf Co-authored-by: PabstMirror <pabstmirror@gmail.com> * Update addons/common/DisableMouseDialog.hpp Co-authored-by: PabstMirror <pabstmirror@gmail.com>
19 lines
507 B
C++
19 lines
507 B
C++
class ctrlMapEmpty;
|
|
class GVAR(DisableMouse_Dialog) {
|
|
idd = -1;
|
|
movingEnable = 0;
|
|
onLoad = QUOTE(with uiNameSpace do { GVAR(dlgDisableMouse) = _this # 0; };);
|
|
objects[] = {};
|
|
class controlsBackground {
|
|
// Transparent map allows setting custom cursor
|
|
class Background: ctrlMapEmpty {
|
|
idc = 101;
|
|
fade = 1;
|
|
x = "safezoneXAbs";
|
|
y = "safezoneY";
|
|
w = "safezoneWAbs";
|
|
h = "safezoneH";
|
|
};
|
|
};
|
|
};
|