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
57 lines
831 B
Python
57 lines
831 B
Python
import uiScriptLocale
|
|
|
|
window = {
|
|
"name" : "QuestionDialog",
|
|
|
|
"x" : SCREEN_WIDTH/2 - 125,
|
|
"y" : SCREEN_HEIGHT/2 - 52,
|
|
|
|
"width" : 280,
|
|
"height" : 75,
|
|
|
|
"children" :
|
|
(
|
|
{
|
|
"name" : "board",
|
|
"type" : "board",
|
|
|
|
"x" : 0,
|
|
"y" : 0,
|
|
|
|
"width" : 280,
|
|
"height" : 75,
|
|
|
|
"children" :
|
|
(
|
|
{
|
|
"name" : "message",
|
|
"type" : "text",
|
|
|
|
"x" : 0,
|
|
"y" : 25,
|
|
|
|
"text" : uiScriptLocale.LOGIN_CONNECTING,
|
|
|
|
"horizontal_align" : "center",
|
|
"text_horizontal_align" : "center",
|
|
"text_vertical_align" : "center",
|
|
},
|
|
{
|
|
"name" : "countdown_message",
|
|
"type" : "text",
|
|
|
|
"x" : 0,
|
|
"y" : 50,
|
|
|
|
"text" : uiScriptLocale.MESSAGE,
|
|
|
|
"horizontal_align" : "center",
|
|
"text_horizontal_align" : "center",
|
|
"text_vertical_align" : "center",
|
|
},
|
|
),
|
|
|
|
},
|
|
),
|
|
}
|