Advertisement
Guest User

Untitled

a guest
Jul 8th, 2017
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. import uiScriptLocale
  2.  
  3. window = {
  4.  
  5. "x" : 0,
  6. "y" : 0,
  7.  
  8. "width" : SCREEN_WIDTH,
  9. "height" : SCREEN_HEIGHT,
  10.  
  11. "children" :
  12. (
  13. ## Board
  14. {
  15. "name" : "BackGround",
  16. "type" : "expanded_image",
  17.  
  18. "x" : 0,
  19. "y" : 0,
  20.  
  21. "image" : "d:/ymir work/ui/intro/pattern/Line_Pattern.tga",
  22.  
  23. "x_scale" : float(SCREEN_WIDTH) / 800.0,
  24. "y_scale" : float(SCREEN_HEIGHT) / 600.0,
  25. },
  26. {
  27. "name":"ErrorMessage",
  28. "type":"text", "x":10, "y":10,
  29. "text": uiScriptLocale.LOAD_ERROR,
  30. },
  31. {
  32. "name" : "GageBoard",
  33. "type" : "window",
  34. "style" : ("ltr",),
  35. "x" : float(SCREEN_WIDTH) * 400 / 800.0 - 200,
  36. "y" : float(SCREEN_HEIGHT) * 500 / 600.0 ,
  37. "width" : 400,
  38. "height": 80,
  39.  
  40. "children" :
  41. (
  42.  
  43. {
  44. "name" : "BackGage",
  45. "type" : "expanded_image",
  46.  
  47. "x" : 70,
  48. "y" : 25,
  49.  
  50. "image" : uiScriptLocale.LOCALE_UISCRIPT_PATH + "loading/loading_empty.tga",
  51. },
  52. {
  53. "name" : "FullGage",
  54. "type" : "expanded_image",
  55.  
  56. "x" : 70,
  57. "y" : 25,
  58.  
  59. "image" : uiScriptLocale.LOCALE_UISCRIPT_PATH + "loading/loading_full.tga",
  60. },
  61. {
  62. "name" : "LoadingPercent_Text",
  63. "type" : "text",
  64.  
  65. "x" : 190,
  66. "y" : -20,
  67.  
  68. "text" : "",
  69. "vertical_align" : "center",
  70. },
  71. ),
  72. },
  73. ),
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement