Per-game save directories under user://saves/<timestamp>-<seed>/. SessionManager autoload handles new_game(), resume_game(), quit flow. Main menu scene with New Game / Continue / Quit buttons. Game-id passed to server subprocess via --game-id flag. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
67 lines
1.8 KiB
Plaintext
67 lines
1.8 KiB
Plaintext
[gd_scene load_steps=2 format=3 uid="uid://main_menu_sr"]
|
|
|
|
[ext_resource type="Script" path="res://ui/main_menu.gd" id="1_mainmenu"]
|
|
|
|
; Main menu — New Game / Continue / Quit.
|
|
; #258: D-085 per-game save directory created on New Game.
|
|
|
|
[node name="MainMenu" type="Control"]
|
|
layout_mode = 3
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
script = ExtResource("1_mainmenu")
|
|
|
|
[node name="Background" type="ColorRect" parent="."]
|
|
layout_mode = 1
|
|
anchors_preset = 15
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
color = Color(0.05, 0.05, 0.08, 1.0)
|
|
mouse_filter = 2
|
|
|
|
[node name="VBox" type="VBoxContainer" parent="."]
|
|
layout_mode = 1
|
|
anchors_preset = 8
|
|
anchor_left = 0.5
|
|
anchor_top = 0.5
|
|
anchor_right = 0.5
|
|
anchor_bottom = 0.5
|
|
offset_left = -120.0
|
|
offset_top = -80.0
|
|
offset_right = 120.0
|
|
offset_bottom = 100.0
|
|
grow_horizontal = 2
|
|
grow_vertical = 2
|
|
theme_override_constants/separation = 16
|
|
alignment = 1
|
|
|
|
[node name="TitleLabel" type="Label" parent="VBox"]
|
|
layout_mode = 2
|
|
text = "THE SETTLED REACH"
|
|
horizontal_alignment = 1
|
|
theme_override_font_sizes/font_size = 36
|
|
theme_override_colors/font_color = Color(0.784, 0.816, 0.878, 1.0)
|
|
|
|
[node name="Spacer" type="Control" parent="VBox"]
|
|
layout_mode = 2
|
|
custom_minimum_size = Vector2(0, 24)
|
|
|
|
[node name="NewGameBtn" type="Button" parent="VBox"]
|
|
layout_mode = 2
|
|
text = "NEW GAME"
|
|
theme_override_font_sizes/font_size = 15
|
|
theme_override_colors/font_color = Color(0.906, 0.773, 0.278, 1.0)
|
|
|
|
[node name="ContinueBtn" type="Button" parent="VBox"]
|
|
layout_mode = 2
|
|
text = "CONTINUE"
|
|
theme_override_font_sizes/font_size = 15
|
|
theme_override_colors/font_color = Color(0.906, 0.773, 0.278, 1.0)
|
|
|
|
[node name="QuitBtn" type="Button" parent="VBox"]
|
|
layout_mode = 2
|
|
text = "QUIT"
|
|
theme_override_font_sizes/font_size = 15
|
|
theme_override_colors/font_color = Color(0.533, 0.565, 0.627, 1.0)
|