Guest User

Minimap.otui

a guest
Apr 22nd, 2013
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.07 KB | None | 0 0
  1. MiniWindow
  2.   id: minimapWindow
  3.   !text: tr('Minimap')
  4.   height: 150
  5.   icon: /images/topbuttons/minimap
  6.   @onClose: modules.game_minimap.onMiniWindowClose()
  7.   &save: true
  8.  
  9.   Label
  10.     text: ?
  11.     text-align: center
  12.     phantom: false
  13.     !tooltip: tr('Hold left mouse button to navigate\nScroll mouse middle button to zoom\nRight mouse button to create map marks\nPress Ctrl+Shift+M to view the entire game map')
  14.     anchors.top: minimizeButton.top
  15.     anchors.right: minimizeButton.left
  16.     margin-right: 3
  17.     size: 14 14
  18.  
  19.   MiniWindowContents
  20.     Minimap
  21.       id: minimap
  22.       anchors.fill: parent
  23.  
  24.     Label
  25.       id: positionX
  26.       anchors.left: parent.left
  27.       anchors.bottom: parent.bottom
  28.       size: 50 20
  29.       phantom: true
  30.  
  31.     Label
  32.       id: positionY
  33.       anchors.left: prev.right
  34.       anchors.bottom: prev.bottom
  35.       margin-left: 3
  36.       size: 50 20
  37.       phantom: true
  38.  
  39.     Label
  40.       id: positionZ
  41.       anchors.left: prev.right
  42.       anchors.bottom: prev.bottom
  43.       margin-left: 3
  44.       size: 50 20
  45.       phantom: true
Advertisement
Add Comment
Please, Sign In to add comment