Advertisement
lukerogue

Untitled

Feb 25th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. class RscButton
  2. {
  3.  
  4. access = 0;
  5. type = CT_BUTTON;
  6. text = "";
  7. colorText[] = {1,1,1,.9};
  8. colorDisabled[] = {0.4,0.4,0.4,0};
  9. colorBackground[] = {0.75,0.75,0.75,0.8};
  10. colorBackgroundDisabled[] = {0,0.0,0};
  11. colorBackgroundActive[] = {0.75,0.75,0.75,1};
  12. colorFocused[] = {0.75,0.75,0.75,.5};
  13. colorShadow[] = {0.023529,0,0.0313725,1};
  14. colorBorder[] = {0.023529,0,0.0313725,1};
  15. soundEnter[] = {"\ca\ui\data\sound\onover",0.09,1};
  16. soundPush[] = {"\ca\ui\data\sound\new1",0,0};
  17. soundClick[] = {"\ca\ui\data\sound\onclick",0.07,1};
  18. soundEscape[] = {"\ca\ui\data\sound\onescape",0.09,1};
  19. style = 2;
  20. x = 0;
  21. y = 0;
  22. w = 0.055589;
  23. h = 0.039216;
  24. shadow = 2;
  25. font = "PuristaLight";
  26. sizeEx = 0.03921;
  27. offsetX = 0.003;
  28. offsetY = 0.003;
  29. offsetPressedX = 0.002;
  30. offsetPressedY = 0.002;
  31. borderSize = 0;
  32. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement