Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. class controls
  2. {
  3. class Title1 : RscLoadingText
  4. {
  5. text = "$STR_LOADING"; // "Loading" text in the middle of the screen
  6. };
  7. class CA_Progress : RscProgress // progress bar, has to have idc 104
  8. {
  9. idc = 104;
  10. type = 8; // CT_PROGRESS
  11. style = 0; // ST_SINGLE
  12. texture = "\ca\ui\data\loadscreen_progressbar_ca.paa";
  13. };
  14. class CA_Progress2 : RscProgressNotFreeze // progress bar that will go reverse
  15. {
  16. idc = 103;
  17. };
  18. class Name2: RscText // the text on the top-left
  19. {
  20. idc = 101;
  21. x = 0.05;
  22. y = 0.029412;
  23. w = 0.9;
  24. h = 0.04902;
  25. text = "";
  26. sizeEx = 0.05;
  27. colorText[] = {0.543,0.5742,0.4102,1.0};
  28. };
  29. };
  30. };
  31.  
  32. #include "custom\points.hpp"
  33.  
  34. #include "addons\DRNdialogs.hpp"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement