Files
mtgodot-poc/assets/uiscript/uiscript/auctionwindow.py
T
shenandClaude Sonnet 5 2277b1dd60 Vendor Metin2 assets (assets/ + bgm/)
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
2026-08-31 20:04:32 +09:00

118 lines
1.6 KiB
Python

ROOT_PATH = "d:/ymir work/ui/game/guild/"
window = {
"name" : "AuctionWindow",
"style" : ("movable", "float",),
"x" : 0,
"y" : 0,
"width" : 376,
"height" : 370,
"children" :
(
{
"name" : "Board",
"type" : "board_with_titlebar",
"x" : 0,
"y" : 0,
"width" : 376,
"height" : 370,
"title" : "매매 등록",
"children" :
(
## Tab Area
{
"name" : "TabControl",
"type" : "window",
"x" : 0,
"y" : 37,
"vertical_align" : "bottom",
"width" : 376,
"height" : 37,
"children" :
(
## Tab
{
"name" : "Tab_01",
"type" : "image",
"x" : 0,
"y" : 0,
"width" : 376,
"height" : 37,
"image" : ROOT_PATH+"tab_1.sub",
},
{
"name" : "Tab_02",
"type" : "image",
"x" : 0,
"y" : 0,
"width" : 376,
"height" : 37,
"image" : ROOT_PATH+"tab_2.sub",
},
{
"name" : "Tab_03",
"type" : "image",
"x" : 0,
"y" : 0,
"width" : 376,
"height" : 37,
"image" : ROOT_PATH+"tab_3.sub",
},
## RadioButton
{
"name" : "Tab_Button_01",
"type" : "radio_button",
"x" : 6,
"y" : 5,
"width" : 53,
"height" : 27,
},
{
"name" : "Tab_Button_02",
"type" : "radio_button",
"x" : 61,
"y" : 5,
"width" : 67,
"height" : 27,
},
{
"name" : "Tab_Button_03",
"type" : "radio_button",
"x" : 130,
"y" : 5,
"width" : 60,
"height" : 27,
},
),
},
),
},
),
}