Advertisement
Guest User

Untitled

a guest
Jan 20th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. class RscText
  2. {
  3. access = 0;
  4. idc = -1;
  5. type = CT_STATIC;
  6. style = ST_MULTI;
  7. linespacing = 1;
  8. colorBackground[] = {0,0,0,0};
  9. colorText[] = {1,1,1,1};
  10. text = "";
  11. shadow = 0;
  12. font = "PuristaLight";
  13. SizeEx = 0.5;
  14. fixedWidth = 0;
  15. x = 0;
  16. y = 0;
  17. h = 0;
  18. w = 0;
  19.  
  20. };
  21.  
  22. class RscPicture
  23. {
  24. access = 0;
  25. idc = -1;
  26. type = CT_STATIC;
  27. style = ST_PICTURE;
  28. colorBackground[] = {0,0,0,0};
  29. colorText[] = {1,1,1,1};
  30. font = "PuristaLight";
  31. sizeEx = 0;
  32. lineSpacing = 0;
  33. text = "";
  34. fixedWidth = 0;
  35. shadow = 0;
  36. x = 0;
  37. y = 0;
  38. w = 0.2;
  39. h = 0.15;
  40. };
  41.  
  42. class RscButton
  43. {
  44.  
  45. access = 0;
  46. type = CT_BUTTON;
  47. text = "";
  48. colorText[] = {1,1,1,.9};
  49. colorDisabled[] = {0.4,0.4,0.4,0};
  50. colorBackground[] = {0.75,0.75,0.75,0.8};
  51. colorBackgroundDisabled[] = {0,0.0,0};
  52. colorBackgroundActive[] = {0.75,0.75,0.75,1};
  53. colorFocused[] = {0.75,0.75,0.75,.5};
  54. colorShadow[] = {0.023529,0,0.0313725,1};
  55. colorBorder[] = {0.023529,0,0.0313725,1};
  56. soundEnter[] = {"\ca\ui\data\sound\onover",0.09,1};
  57. soundPush[] = {"\ca\ui\data\sound\new1",0,0};
  58. soundClick[] = {"\ca\ui\data\sound\onclick",0.07,1};
  59. soundEscape[] = {"\ca\ui\data\sound\onescape",0.09,1};
  60. style = 2;
  61. x = 0;
  62. y = 0;
  63. w = 0.055589;
  64. h = 0.039216;
  65. shadow = 2;
  66. font = "PuristaLight";
  67. sizeEx = 0.03921;
  68. offsetX = 0.003;
  69. offsetY = 0.003;
  70. offsetPressedX = 0.002;
  71. offsetPressedY = 0.002;
  72. borderSize = 0;
  73. };
  74.  
  75. class RscFrame
  76. {
  77. type = CT_STATIC;
  78. idc = -1;
  79. style = ST_FRAME;
  80. shadow = 2;
  81. colorBackground[] = {1,1,1,1};
  82. colorText[] = {1,1,1,0.9};
  83. font = "PuristaLight";
  84. sizeEx = 0.03;
  85. text = "";
  86. };
  87. class Box
  88. {
  89. type = CT_STATIC;
  90. idc = -1;
  91. style = ST_CENTER;
  92. shadow = 2;
  93. colorBackground[] = { 0.2,0.9,0.5, 0.9};
  94. colorText[] = {1,1,1,0.9};
  95. font = "PuristaLight";
  96. sizeEx = 0.03;
  97. text = "";
  98. };
  99. class RscSlider
  100. {
  101. style = "0x400 + 0x10";
  102. type = 43; // this is the more "modern" slider. Type = 3 is the old dull one.
  103. shadow = 0;
  104. color[] = {1,1,1,0.4};
  105. colorActive[] = {1,1,1,1};
  106. colorDisabled[] = {0.5,0.5,0.5,0.2};
  107. arrowEmpty = "\A3\ui_f\data\gui\cfg\slider\arrowEmpty_ca.paa";
  108. arrowFull = "\A3\ui_f\data\gui\cfg\slider\arrowFull_ca.paa";
  109. border = "\A3\ui_f\data\gui\cfg\slider\border_ca.paa";
  110. thumb = "\A3\ui_f\data\gui\cfg\slider\thumb_ca.paa";
  111. };
  112. /*
  113. class RscEdit {
  114. style = 0x00 + 0x40;
  115. font = "Zeppelin32";
  116. shadow = 2;
  117. sizeEx = 0.03921;
  118. colorBackground[] = {0, 0, 0, 1};
  119. colorText[] = {0.95, 0.95, 0.95, 1};
  120. colorSelection[] = {0.8784, 0.8471, 0.651, 1.0};
  121. };
  122. */
  123. class RscEdit
  124. {
  125. idc = -1;
  126. type = 2;
  127. style = "2 + 512";
  128. x = 0;
  129. y = 0;
  130. h = 0.2;
  131. w = 1;
  132. font = "PuristaMedium";
  133. sizeEx = 0.04;
  134. autocomplete = "";
  135. canModify = true;
  136. maxChars = 10;
  137. forceDrawCaret = false;
  138. colorSelection[] = {0,1,0,1};
  139. colorText[] = {0,0,1,1};
  140. colorDisabled[] = {1,0,0,1};
  141. colorBackground[] = {0,0,0,0.5};
  142. text = ""; TextfromBox = _this
  143.  
  144. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement