Files
taverne-ui/uiscript/uiscript/atlaswindow.py
T
Andreas Lierschaft 11df29aa6b Initial commit: UI-Quellcode (root + uiscript)
Enthaelt die editierbaren Python-UI-Skripte (root/, uiscript/) des
EterNexus-Clients, u.a. die Aenderungen fuer aktivierbare Items
(constinfo.py: IS_ACTIVATABLE_ITEM/IS_MOUNT_SEAL, uiinventory.py:
RefreshBagSlotWindow). Kompilierte Pack-Dateien (.epk/.eix) sowie
Binaries/DLLs/Locale-Assets sind bewusst nicht Teil dieses Repos.
2026-08-17 21:50:23 +02:00

32 lines
433 B
Python

import uiScriptLocale
ROOT = "d:/ymir work/ui/minimap/"
window = {
"name" : "AtlasWindow",
"style" : ("movable", "float",),
"x" : SCREEN_WIDTH - 136 - 256 - 10,
"y" : 0,
"width" : 256 + 15,
"height" : 256 + 38,
"children" :
(
## BOARD
{
"name" : "board",
"type" : "board_with_titlebar",
"x" : 0,
"y" : 0,
"width" : 256 + 15,
"height" : 256 + 38,
"title" : uiScriptLocale.ZONE_MAP,
},
),
}