- Add mission config, params, and function registrations - Implement faction helpers and mission generators - Include setup docs, CBA settings, and mission scaffolding
22 lines
634 B
C++
22 lines
634 B
C++
class RscPmcMissionSetup {
|
|
idd = 92010;
|
|
fadeIn = 0;
|
|
fadeOut = 0;
|
|
duration = 1e011;
|
|
onLoad = "uiNamespace setVariable ['RscPmcMissionSetup', _this select 0]";
|
|
onUnLoad = "uiNamespace setVariable ['RscPmcMissionSetup', nil]";
|
|
|
|
class controlsBackground {};
|
|
class controls {
|
|
class IFrame: RscText {
|
|
type = 106;
|
|
idc = 92011;
|
|
x = "safeZoneXAbs + (safeZoneWAbs * 0.125)";
|
|
y = "safeZoneY + (safeZoneH * 0.125)";
|
|
w = "safeZoneWAbs * 0.75";
|
|
h = "safeZoneH * 0.75";
|
|
colorBackground[] = {0, 0, 0, 0};
|
|
};
|
|
};
|
|
};
|