Advertisement
Guest User

Untitled

a guest
Sep 14th, 2020
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. import uiScriptLocale
  2.  
  3. window = {
  4. "name" : "SelectItemWindow",
  5.  
  6. "x" : 100,
  7. "y" : 20,
  8.  
  9. "style" : ("movable", "float",),
  10.  
  11. "width" : 184,
  12. "height" : 332,
  13.  
  14. "children" :
  15. (
  16. {
  17. "name" : "board",
  18. "type" : "board",
  19.  
  20. "x" : 0,
  21. "y" : 0,
  22.  
  23. "width" : 184,
  24. "height" : 332,
  25.  
  26. "children" :
  27. (
  28. ## Title
  29. {
  30. "name" : "TitleBar",
  31. "type" : "titlebar",
  32. "style" : ("attach",),
  33.  
  34. "x" : 8,
  35. "y" : 7,
  36.  
  37. "width" : 169,
  38.  
  39. "children" :
  40. (
  41. { "name":"TitleName", "type":"text", "x":77, "y":3, "text":uiScriptLocale.SELECT_METIN_STONE_TITLE, "text_horizontal_align":"center" },
  42. ),
  43. },
  44.  
  45. ## Item Slot
  46. {
  47. "name" : "ItemSlot",
  48. "type" : "grid_table",
  49.  
  50. "x" : 12,
  51. "y" : 34,
  52.  
  53. "start_index" : 0,
  54. "x_count" : 5,
  55. "y_count" : 8,
  56. "x_step" : 32,
  57. "y_step" : 32,
  58.  
  59. "image" : "d:/ymir work/ui/public/Slot_Base.sub",
  60. },
  61.  
  62. ## Button
  63. {
  64. "name" : "ExitButton",
  65. "type" : "button",
  66.  
  67. "x" : 0,
  68. "y" : 34,
  69.  
  70. "text" : uiScriptLocale.CLOSE,
  71. "horizontal_align" : "center",
  72. "vertical_align" : "bottom",
  73.  
  74. "default_image" : "d:/ymir work/ui/public/large_button_01.sub",
  75. "over_image" : "d:/ymir work/ui/public/large_button_02.sub",
  76. "down_image" : "d:/ymir work/ui/public/large_button_03.sub",
  77. },
  78.  
  79. ),
  80. },
  81. ),
  82. }
  83.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement