fix: установка пустая, отец в стену, нет меню
Some checks failed
Godot CI / Import + smoke test (push) Failing after 34s
Some checks failed
Godot CI / Import + smoke test (push) Failing after 34s
ФИКС АКТА 2 (главный баг):
- CenterContainer/WelcomeScreen/FourSquares имели
anchor_right=1.0 + offset_right=640 → элементы уезжали
ЗА пределы экрана (далеко на восток). Установочное окно
было невидно. Заменил на anchors_preset=15 (full rect)
без offset, теперь Center правильно центрирует Window.
- PanelContainer без StyleBox = прозрачный. Добавлены 3
StyleBoxFlat (style_window — основное окно с рамкой,
style_titlebar — тёмный header с жёлтым заголовком,
style_panel — для вложенных панелей). Окно установки
теперь видимо как настоящее Шиндовс-окно.
- Body теперь без scroll_active (fit_content), Buttons
с min_size 110×28 — кнопки чётко видны.
ОТЕЦ:
- Шёл на ЗАПАД (position.x - 2.5 = -0.8) в стену, а дверь
на ВОСТОКЕ. Меняю на +1.0 (восток к двери при x=2.05).
- _walk_father_out: сначала поворот корпуса 0.3 сек к двери
(rotation:y = -PI/2), потом 1.4 сек шагание:
* движение position:x на восток
* абс(sin) bob тела на 0.04м (4 шага)
* sin качание ног (LegL/LegR) и рук (ArmL/ArmR) в
противофазе с амплитудой 0.4/0.24 радиан
- Теперь отец действительно идёт к двери с шагающей походкой.
ГЛАВНОЕ МЕНЮ (чего не хватало):
- scenes/main_menu.tscn: тёмный фон с виньетками, заголовок
жёлтым акцентом, 4 кнопки (Новая игра / Продолжить /
Настройки / Выйти), StyleBoxFlat для кнопок.
- main_menu.gd: ESC = Quit, кнопка «Новая игра» →
SceneManager.go_room(), GameState.reset() при входе в меню.
- project.godot main_scene = main_menu.tscn (было act1_room).
- SceneManager + go_main() метод.
HUD UX:
- set_date_time("","") теперь прячет лейбл (раньше показывал
"· "). В меню HUD скрыт полностью.
- В Акте 1 и кухне при _ready восстанавливается crosshair +
controls_hint (которые меню скрывает).
ЧЕГО ВСЁ ЕЩЁ НЕ ХВАТАЕТ (для следующих сессий):
- Звуки/SFX (шаги, клики, sfxr-эффекты, дверь)
- Pause-меню по ESC во время геймплея
- Save/load система (сейчас всё сбрасывается)
- Анимация перехода между сценами (fade-in/out)
- Реальные ассеты (CC0 модели мебели/персонажей)
- Музыка/амбиент (CC0 трек комнаты)
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
82e134e9e5
commit
a6f6785188
8 changed files with 275 additions and 24 deletions
|
|
@ -1,29 +1,72 @@
|
|||
[gd_scene load_steps=2 format=3]
|
||||
[gd_scene load_steps=5 format=3]
|
||||
|
||||
[ext_resource type="Script" path="res://scripts/prologue/act2_install.gd" id="1_act2"]
|
||||
|
||||
[sub_resource type="StyleBoxFlat" id="style_window"]
|
||||
bg_color = Color(0.13, 0.14, 0.18, 0.97)
|
||||
border_width_left = 2
|
||||
border_width_top = 2
|
||||
border_width_right = 2
|
||||
border_width_bottom = 2
|
||||
border_color = Color(0.42, 0.44, 0.5, 1)
|
||||
corner_radius_top_left = 4
|
||||
corner_radius_top_right = 4
|
||||
corner_radius_bottom_left = 4
|
||||
corner_radius_bottom_right = 4
|
||||
content_margin_left = 12.0
|
||||
content_margin_top = 8.0
|
||||
content_margin_right = 12.0
|
||||
content_margin_bottom = 10.0
|
||||
|
||||
[sub_resource type="StyleBoxFlat" id="style_titlebar"]
|
||||
bg_color = Color(0.08, 0.09, 0.13, 1)
|
||||
border_width_bottom = 1
|
||||
border_color = Color(0.42, 0.44, 0.5, 1)
|
||||
corner_radius_top_left = 3
|
||||
corner_radius_top_right = 3
|
||||
content_margin_left = 8.0
|
||||
content_margin_top = 4.0
|
||||
content_margin_right = 8.0
|
||||
content_margin_bottom = 4.0
|
||||
|
||||
[sub_resource type="StyleBoxFlat" id="style_panel"]
|
||||
bg_color = Color(0.16, 0.17, 0.22, 1)
|
||||
border_width_left = 1
|
||||
border_width_top = 1
|
||||
border_width_right = 1
|
||||
border_width_bottom = 1
|
||||
border_color = Color(0.35, 0.37, 0.43, 1)
|
||||
corner_radius_top_left = 2
|
||||
corner_radius_top_right = 2
|
||||
corner_radius_bottom_left = 2
|
||||
corner_radius_bottom_right = 2
|
||||
content_margin_left = 8.0
|
||||
content_margin_top = 6.0
|
||||
content_margin_right = 8.0
|
||||
content_margin_bottom = 6.0
|
||||
|
||||
[node name="Act2Install" type="Control"]
|
||||
layout_mode = 3
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
offset_right = 640.0
|
||||
offset_bottom = 360.0
|
||||
script = ExtResource("1_act2")
|
||||
|
||||
[node name="Desktop" type="ColorRect" parent="."]
|
||||
layout_mode = 1
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
offset_right = 640.0
|
||||
offset_bottom = 360.0
|
||||
color = Color(0.04, 0.08, 0.18, 1)
|
||||
|
||||
[node name="FourSquares" type="Control" parent="."]
|
||||
layout_mode = 1
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
offset_right = 640.0
|
||||
offset_bottom = 360.0
|
||||
|
||||
[node name="LogoText" type="Label" parent="FourSquares"]
|
||||
layout_mode = 0
|
||||
offset_left = 0.0
|
||||
offset_top = 130.0
|
||||
offset_right = 640.0
|
||||
|
|
@ -70,20 +113,22 @@ horizontal_alignment = 1
|
|||
modulate = Color(0.7, 0.7, 0.7, 1)
|
||||
|
||||
[node name="Center" type="CenterContainer" parent="."]
|
||||
layout_mode = 1
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
offset_right = 640.0
|
||||
offset_bottom = 360.0
|
||||
|
||||
[node name="Window" type="PanelContainer" parent="Center"]
|
||||
custom_minimum_size = Vector2(540, 300)
|
||||
custom_minimum_size = Vector2(560, 320)
|
||||
layout_mode = 2
|
||||
theme_override_styles/panel = SubResource("style_window")
|
||||
|
||||
[node name="V" type="VBoxContainer" parent="Center/Window"]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="TitleBar" type="PanelContainer" parent="Center/Window/V"]
|
||||
layout_mode = 2
|
||||
theme_override_styles/panel = SubResource("style_titlebar")
|
||||
|
||||
[node name="Title" type="Label" parent="Center/Window/V/TitleBar"]
|
||||
layout_mode = 2
|
||||
|
|
@ -92,12 +137,12 @@ horizontal_alignment = 1
|
|||
modulate = Color(0.94, 0.71, 0.1, 1)
|
||||
|
||||
[node name="Body" type="RichTextLabel" parent="Center/Window/V"]
|
||||
custom_minimum_size = Vector2(520, 160)
|
||||
custom_minimum_size = Vector2(530, 180)
|
||||
layout_mode = 2
|
||||
bbcode_enabled = true
|
||||
fit_content = true
|
||||
scroll_active = true
|
||||
text = ""
|
||||
text = "Загрузка…"
|
||||
|
||||
[node name="Input" type="LineEdit" parent="Center/Window/V"]
|
||||
layout_mode = 2
|
||||
|
|
@ -108,7 +153,7 @@ max_length = 24
|
|||
layout_mode = 2
|
||||
text = ""
|
||||
autowrap_mode = 3
|
||||
modulate = Color(0.55, 0.55, 0.55, 1)
|
||||
modulate = Color(0.6, 0.6, 0.6, 1)
|
||||
|
||||
[node name="CheckBoxNoPwd" type="CheckBox" parent="Center/Window/V"]
|
||||
layout_mode = 2
|
||||
|
|
@ -120,7 +165,7 @@ layout_mode = 2
|
|||
[node name="ErrorLabel" type="Label" parent="Center/Window/V"]
|
||||
layout_mode = 2
|
||||
text = ""
|
||||
modulate = Color(0.85, 0.16, 0.16, 1)
|
||||
modulate = Color(0.95, 0.3, 0.3, 1)
|
||||
|
||||
[node name="Progress" type="ProgressBar" parent="Center/Window/V"]
|
||||
layout_mode = 2
|
||||
|
|
@ -133,24 +178,26 @@ alignment = 2
|
|||
|
||||
[node name="BtnB" type="Button" parent="Center/Window/V/Buttons"]
|
||||
layout_mode = 2
|
||||
custom_minimum_size = Vector2(110, 28)
|
||||
text = "Читать"
|
||||
|
||||
[node name="BtnA" type="Button" parent="Center/Window/V/Buttons"]
|
||||
layout_mode = 2
|
||||
custom_minimum_size = Vector2(110, 28)
|
||||
text = "Принять"
|
||||
|
||||
[node name="WelcomeScreen" type="Control" parent="."]
|
||||
layout_mode = 1
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
offset_right = 640.0
|
||||
offset_bottom = 360.0
|
||||
visible = false
|
||||
|
||||
[node name="BG" type="ColorRect" parent="WelcomeScreen"]
|
||||
layout_mode = 1
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
offset_right = 640.0
|
||||
offset_bottom = 360.0
|
||||
color = Color(0.04, 0.08, 0.18, 1)
|
||||
|
||||
[node name="V" type="VBoxContainer" parent="WelcomeScreen"]
|
||||
|
|
@ -168,12 +215,14 @@ modulate = Color(0.94, 0.94, 0.94, 1)
|
|||
|
||||
[node name="Hint" type="Label" parent="WelcomeScreen/V"]
|
||||
layout_mode = 2
|
||||
text = ""
|
||||
text = "Шиндовс 9 готов к работе."
|
||||
horizontal_alignment = 1
|
||||
modulate = Color(0.7, 0.7, 0.7, 1)
|
||||
|
||||
[node name="LaunchSteme" type="Button" parent="WelcomeScreen/V"]
|
||||
layout_mode = 2
|
||||
custom_minimum_size = Vector2(160, 32)
|
||||
size_flags_horizontal = 4
|
||||
text = "Запустить стеме"
|
||||
|
||||
[connection signal="pressed" from="WelcomeScreen/V/LaunchSteme" to="." method="_on_launch_steme"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue