Advertisement
Guest User

Untitled

a guest
Jan 20th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. ###################################################################
  2. # title_name : Professional Biolog System
  3. # date_created : 2016.08.07
  4. # filename : biolog_collectinventorywindow.py
  5. # author : VegaS
  6. # version_actual : Version 0.0.8
  7. #
  8. import uiScriptLocale
  9. import item
  10.  
  11. window = {
  12. "name" : "BeltInventoryWindow", "x" : SCREEN_WIDTH - 176 - 300, "y" : SCREEN_HEIGHT - 37 - 565 + 209 + 32, "width" : 148, "height" : 90, "type" : "image", "image" : "d:/ymir work/ui/game/belt_inventory/bg.tga",
  13. "children" :
  14. (
  15. {
  16. "name" : "ExpandBtn", "type" : "button", "x" : 2+4, "y" : 25, "default_image" : "d:/ymir work/ui/game/biolog_system_vegas/btn_expand_normal.tga", "over_image" : "d:/ymir work/ui/game/biolog_system_vegas/btn_expand_over.tga", "down_image" : "d:/ymir work/ui/game/biolog_system_vegas/btn_expand_down.tga", "disable_image" : "d:/ymir work/ui/game/biolog_system_vegas/btn_expand_disabled.tga",
  17. },
  18. {
  19. "name" : "BeltInventoryLayer", "x" : 5, "y" : 0, "width" : 148, "height" : 86,
  20. "children" :
  21. (
  22. {
  23. "name" : "MinimizeBtn", "type" : "button", "x" : 2+4, "y" : 25, "width" : 10, "default_image" : "d:/ymir work/ui/game/biolog_system_vegas/btn_minimize_normal.tga", "over_image" : "d:/ymir work/ui/game/biolog_system_vegas/btn_minimize_over.tga", "down_image" : "d:/ymir work/ui/game/biolog_system_vegas/btn_minimize_down.tga", "disable_image" : "d:/ymir work/ui/game/biolog_system_vegas/btn_minimize_disabled.tga",
  24. },
  25. {
  26. "name" : "BeltInventoryBoard", "type" : "board", "style" : ("attach", "float"), "x" : 10, "y" : 5, "width" : 138, "height" : 90,
  27. "children" :
  28. (
  29. {
  30. "name" : "BeltInventorySlot", "type" : "grid_table", "x" : 15, "y" : 52-36, "start_index" : 0, "x_count" : 1, "y_count" : 1, "x_step" : 32, "y_step" : 32, "image" : "d:/ymir work/ui/public/Slot_Base.sub"
  31. },
  32. {
  33. "name" : "send_biolog", "type" : "button", "x" : 41, "y" : 52-36+45, "text" : "", "default_image" : "d:/ymir work/ui/game/biolog_system_vegas/acceptbutton00.tga", "over_image" : "d:/ymir work/ui/game/biolog_system_vegas/acceptbutton01.tga", "down_image" : "d:/ymir work/ui/game/biolog_system_vegas/acceptbutton02.tga",
  34. },
  35. {
  36. "name" : "LineUp", "type" : "line", "x" : 60, "y" : 10, "width" : 0, "height" : 43, "color" : 0xffffffff,
  37. },
  38. {
  39. "name" : "time", "type" : "slotbar", "x" : 66, "y" : 57-47, "width" : 60, "height" : 21,
  40. "children" :
  41. (
  42. {
  43. "name" : "time_value", "type" : "text", "x" : 0, "y" : 0, "all_align" : "center", "text" : "00:00:00",
  44. },
  45. ),
  46. },
  47. ),
  48. },
  49. )
  50. },
  51. ),
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement