Files
taverne-ui/locale_de/locale/de/ui/giftbox.py
T
Andreas Lierschaft 6555c17841 locale_de in Versionskontrolle aufnehmen
Nimmt den deutschen Locale-Ordner (UI-Layouts, Sprachtabellen,
Icons/Texturen) zusaetzlich zu root/ und uiscript/ ins Repo auf.
2026-08-17 23:15:12 +02:00

41 lines
559 B
Python

import uiScriptLocale
ROOT = "d:/ymir work/ui/game/"
Y_ADD_POSITION = 0
window = {
"name" : "GiftBox",
"x" : 0,
"y" : SCREEN_HEIGHT - 45,
"width" : 50,
"height" : 50,
"children" :
(
{
"name" : "GiftBox_Icon",
"type" : "image",
"x" : 5,
"y" : -90 + Y_ADD_POSITION,
"width" : 50,
"height" : 50,
"image" : "D:/Ymir Work/UI/Pattern/GiftBox/present_for_fruends_icon.tga",
},
{
"name" : "GiftBox_ToolTip",
"x" : 0,
"y" : 0,
"width" : 50,
"height" : 10,
"type" : "window",
},
),
}