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
86 lines
1.4 KiB
Python
86 lines
1.4 KiB
Python
import uiScriptLocale
|
|
import item
|
|
|
|
COSTUME_START_INDEX = item.COSTUME_SLOT_START
|
|
|
|
window = {
|
|
"name" : "CostumeWindow",
|
|
|
|
"x" : SCREEN_WIDTH - 175 - 140,
|
|
"y" : SCREEN_HEIGHT - 37 - 565,
|
|
|
|
"style" : ("movable", "float",),
|
|
|
|
"width" : 140,
|
|
"height" : 180,
|
|
|
|
"children" :
|
|
(
|
|
{
|
|
"name" : "board",
|
|
"type" : "board",
|
|
"style" : ("attach",),
|
|
|
|
"x" : 0,
|
|
"y" : 0,
|
|
|
|
"width" : 140,
|
|
"height" : 180,
|
|
|
|
"children" :
|
|
(
|
|
## Title
|
|
{
|
|
"name" : "TitleBar",
|
|
"type" : "titlebar",
|
|
"style" : ("attach",),
|
|
|
|
"x" : 6,
|
|
"y" : 6,
|
|
|
|
"width" : 130,
|
|
"color" : "yellow",
|
|
|
|
"children" :
|
|
(
|
|
{ "name":"TitleName", "type":"text", "x":60, "y":3, "text":uiScriptLocale.COSTUME_WINDOW_TITLE, "text_horizontal_align":"center" },
|
|
),
|
|
},
|
|
|
|
## Equipment Slot
|
|
{
|
|
"name" : "Costume_Base",
|
|
"type" : "image",
|
|
|
|
"x" : 13,
|
|
"y" : 38,
|
|
|
|
"image" : "d:/ymir work/ui/costume/costume_bg.jpg",
|
|
|
|
"children" :
|
|
(
|
|
|
|
{
|
|
"name" : "CostumeSlot",
|
|
"type" : "slot",
|
|
|
|
"x" : 3,
|
|
"y" : 3,
|
|
|
|
"width" : 127,
|
|
"height" : 145,
|
|
|
|
"slot" : (
|
|
{"index":COSTUME_START_INDEX+0, "x":61, "y":45, "width":32, "height":64},
|
|
{"index":COSTUME_START_INDEX+1, "x":61, "y": 8, "width":32, "height":32},
|
|
{"index":COSTUME_START_INDEX+2, "x":5, "y":145, "width":32, "height":32},
|
|
),
|
|
},
|
|
),
|
|
},
|
|
|
|
),
|
|
},
|
|
),
|
|
}
|