Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. class map_filter {
  2. idd = 38500;
  3. movingEnable = false;
  4. enableSimulation = true;
  5. onUnload = "[] spawn {{if(markerType _x != ""Empty"") then {_x setMarkerAlphaLocal 1;};} forEach allMapMarkers;};";
  6.  
  7. class controlsBackground {
  8. class HG: life_RscPicture
  9. {
  10. idc = -1;
  11. text = "textures\images\tablet\iphone.paa";
  12. x = 0.515469 * safezoneW + safezoneX;
  13. y = 0.192 * safezoneH + safezoneY;
  14. w = 0.484688 * safezoneW;
  15. h = 0.836 * safezoneH;
  16. };
  17. };
  18.  
  19. class controls {
  20.  
  21. class Map : Life_RscMapControl
  22. {
  23. idc = 1400;
  24. x = 0.659844 * safezoneW + safezoneX;
  25. y = 0.313 * safezoneH + safezoneY;
  26. w = 0.185625 * safezoneW;
  27. h = 0.418 * safezoneH;
  28. };
  29.  
  30. class Filter : Life_RscListBox
  31. {
  32. idc = 1500;
  33. sizeEx = 0.035;
  34. onLBSelChanged = "[] spawn life_fnc_mapMarkers;";
  35. x = 0.659844 * safezoneW + safezoneX;
  36. y = 0.742 * safezoneH + safezoneY;
  37. w = 0.185625 * safezoneW;
  38. h = 0.154 * safezoneH;
  39. };
  40. class ButtonClose: life_RscButtonMenu
  41. {
  42. idc = -1;
  43. text = ""; //--- ToDo: Localize;
  44. onButtonClick = "closeDialog 0;";
  45. x = 0.732031 * safezoneW + safezoneX;
  46. y = 0.94 * safezoneH + safezoneY;
  47. w = 0.020625 * safezoneW;
  48. h = 0.033 * safezoneH;
  49. tooltip = "Fermer"; //--- ToDo: Localize;
  50. colorBackground[] = {-1,-1,-1,-1};
  51. colorBackgroundFocused[] = {1,1,1,0.12};
  52. colorBackground2[] = {0.75,0.75,0.75,0.2};
  53. color[] = {1,1,1,1};
  54. colorFocused[] = {0,0,0,0};
  55. color2[] = {0,0,0,0};
  56. colorText[] = {1,1,1,1};
  57. colorDisabled[] = {1,0,0,0.1};
  58. };
  59. };
  60. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement