forge/arma/client/addons/phone/ui/RscPhone.hpp
Jacob Schmidt a8415eb1fd Add phone addon and wire UI events
- Introduce client phone addon, UI, and XEH handlers
- Route actor phone interaction to the new phone UI
- Add initial phone state, event handling, and persistence
2026-04-06 19:07:18 -05:00

23 lines
578 B
C++

class RscPhone {
idd = 1000;
movingEnable = 1;
enableSimulation = 1;
duration = 1e011;
fadeIn = 0;
fadeOut = 0;
onLoad = "uiNamespace setVariable ['RscPhone', _this select 0]";
class controlsBackground {};
class controls {
class Background: RscText {
type = 106;
idc = 1001;
x = "safezoneX + (safezoneW * 0.4125)";
y = "safezoneY + (safezoneH * 0.1)";
w = "safezoneW * 1";
h = "safezoneH * 1";
colorBackground[] = {0, 0, 0, 0};
};
};
};