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
41 lines
559 B
Python
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",
|
|
},
|
|
),
|
|
} |