Advertisement
deadx2

Untitled

Nov 12th, 2017
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.18 KB | None | 0 0
  1. import uiScriptLocaleMG
  2.  
  3. ROOT = "d:/ymir work/ui/public/"
  4.  
  5. window = {
  6.     "name" : "SystemDialog",
  7.     "style" : ("float",),
  8.  
  9.     "x" : (SCREEN_WIDTH  - 200) /2,
  10.     "y" : (SCREEN_HEIGHT - 288) /2,
  11.  
  12.     "width" : 200,
  13.     "height" : 248,
  14.  
  15.     "children" :
  16.     (
  17.         {
  18.             "name" : "board",
  19.             "type" : "thinboard",
  20.  
  21.             "x" : 0,
  22.             "y" : 0,
  23.  
  24.             "width" : 200,
  25.             "height" : 248,
  26.  
  27.             "children" :
  28.             (
  29.                 {
  30.                     "name" : "change_channel",
  31.                     "type" : "button",
  32.  
  33.                     "x" : 10,
  34.                     "y" : 87-80,
  35.  
  36.                     "text" : "|cfff8d090Zmiana Kanału",
  37.                     "default_image" : "illumina/inne/btn_esc_01.tga",
  38.                     "over_image"    : "illumina/inne/btn_esc_02.tga",
  39.                     "down_image"    : "illumina/inne/btn_esc_03.tga",
  40.                 },
  41.                 {
  42.                     "name" : "game_option_button",
  43.                     "type" : "button",
  44.  
  45.                     "x" : 10,
  46.                     "y" : 87-40,
  47.  
  48.                     "text" : "|cfff8d090Opcje Gry",
  49.                     "default_image" : "illumina/inne/btn_esc_01.tga",
  50.                     "over_image"    : "illumina/inne/btn_esc_02.tga",
  51.                     "down_image"    : "illumina/inne/btn_esc_03.tga",
  52.                 },
  53.                 {
  54.                     "name" : "change_button",
  55.                     "type" : "button",
  56.  
  57.                     "x" : 10,
  58.                     "y" : 117-40,
  59.  
  60.                     "text" : "|cfff8d090Zmień Postać",
  61.                     "default_image" : "illumina/inne/btn_esc_01.tga",
  62.                     "over_image"    : "illumina/inne/btn_esc_02.tga",
  63.                     "down_image"    : "illumina/inne/btn_esc_03.tga",
  64.                 },
  65.                 {
  66.                     "name" : "logout_button",
  67.                     "type" : "button",
  68.  
  69.                     "x" : 10,
  70.                     "y" : 147-40,
  71.  
  72.                     "text" : "|cfff8d090Wyloguj",
  73.                     "default_image" : "illumina/inne/btn_esc_01.tga",
  74.                     "over_image"    : "illumina/inne/btn_esc_02.tga",
  75.                     "down_image"    : "illumina/inne/btn_esc_03.tga",
  76.                 },
  77.                 {
  78.                     "name" : "exit_button",
  79.                     "type" : "button",
  80.  
  81.                     "x" : 10,
  82.                     "y" : 177-40,
  83.  
  84.                     "text" : "|cfff8d090Wyjdź z Gry",
  85.                     "default_image" : "illumina/inne/btn_esc_01.tga",
  86.                     "over_image"    : "illumina/inne/btn_esc_02.tga",
  87.                     "down_image"    : "illumina/inne/btn_esc_03.tga",
  88.                 },
  89.                 {
  90.                     "name" : "cancel_button",
  91.                     "type" : "button",
  92.  
  93.                     "x" : 10,
  94.                     "y" : 217-40,
  95.  
  96.                     "text" : "|cfff8d090Anuluj",
  97.                     "default_image" : "illumina/inne/btn_esc_01.tga",
  98.                     "over_image"    : "illumina/inne/btn_esc_02.tga",
  99.                     "down_image"    : "illumina/inne/btn_esc_03.tga",
  100.                 },
  101.             ),
  102.         },
  103.     ),
  104. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement