Committed to this self-hosted private repo so a clone builds on any machine without a separate asset sync. Copyrighted Ymir art — do not publish or redistribute. 54198 files, ~2.2 GB. asset_index.txt / assets.zip stay gitignored (derived: bake_asset_index.gd / pack-assets.sh). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_013EJxkHiNKS4kybHS3XKyAJ
49 lines
812 B
Python
49 lines
812 B
Python
import uiScriptLocale
|
|
|
|
ROOT = "d:/ymir work/ui/game/"
|
|
|
|
Y_ADD_POSITION = 0
|
|
window = {
|
|
"name" : "ExpandTaskBar",
|
|
|
|
"x" : SCREEN_WIDTH/2 - 5,
|
|
"y" : SCREEN_HEIGHT - 74,
|
|
|
|
"width" : 37,
|
|
"height" : 37,
|
|
|
|
"children" :
|
|
(
|
|
{
|
|
"name" : "ExpanedTaskBar_Board",
|
|
"type" : "window",
|
|
|
|
"x" : 0,
|
|
"y" : 0,
|
|
|
|
"width" : 37,
|
|
"height" : 37,
|
|
|
|
"children" :
|
|
(
|
|
{
|
|
"name" : "DragonSoulButton",
|
|
"type" : "button",
|
|
|
|
"x" : 0,
|
|
"y" : 0,
|
|
|
|
"width" : 37,
|
|
"height" : 37,
|
|
|
|
"tooltip_text" : uiScriptLocale.TASKBAR_DISABLE,
|
|
|
|
"default_image" : "d:/ymir work/ui/dragonsoul/DragonSoul_Button_01.tga",
|
|
"over_image" : "d:/ymir work/ui/dragonsoul/DragonSoul_Button_02.tga",
|
|
"down_image" : "d:/ymir work/ui/dragonsoul/DragonSoul_Button_03.tga",
|
|
},
|
|
),
|
|
},
|
|
),
|
|
}
|