Система диалогов.
This commit is contained in:
parent
3c1619ee9f
commit
2a2399dc2c
8 changed files with 264 additions and 88 deletions
|
@ -1,6 +1,7 @@
|
|||
[gd_scene load_steps=5 format=3 uid="uid://cmn7af4dsj8v2"]
|
||||
[gd_scene load_steps=8 format=3 uid="uid://cmn7af4dsj8v2"]
|
||||
|
||||
[ext_resource type="FontFile" uid="uid://dwn20pw40jpxm" path="res://fonts/ZxSpectrum7-nROZ0.ttf" id="1_e4s1h"]
|
||||
[ext_resource type="Script" path="res://scripts/Dialog.cs" id="2_a35aq"]
|
||||
|
||||
[sub_resource type="Theme" id="Theme_gtdw8"]
|
||||
default_font = ExtResource("1_e4s1h")
|
||||
|
@ -9,34 +10,56 @@ default_font_size = 10
|
|||
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_tctyf"]
|
||||
bg_color = Color(0.532017, 0.646565, 0.382003, 1)
|
||||
|
||||
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_yovy8"]
|
||||
bg_color = Color(0.704854, 0.51027, 0.802981, 1)
|
||||
|
||||
[sub_resource type="LabelSettings" id="LabelSettings_8nvov"]
|
||||
font = ExtResource("1_e4s1h")
|
||||
font_size = 10
|
||||
outline_color = Color(0, 0, 0, 1)
|
||||
|
||||
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_dk342"]
|
||||
bg_color = Color(0.906641, 0.460702, 0.0359737, 1)
|
||||
|
||||
[node name="Dialog" type="PanelContainer"]
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
offset_right = -544.0
|
||||
offset_bottom = -451.0
|
||||
offset_bottom = -443.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
size_flags_horizontal = 3
|
||||
theme = SubResource("Theme_gtdw8")
|
||||
theme_override_styles/panel = SubResource("StyleBoxFlat_tctyf")
|
||||
script = ExtResource("2_a35aq")
|
||||
|
||||
[node name="VBoxContainer" type="VBoxContainer" parent="."]
|
||||
layout_mode = 2
|
||||
|
||||
[node name="Label" type="Label" parent="VBoxContainer"]
|
||||
[node name="PanelContainer" type="PanelContainer" parent="VBoxContainer"]
|
||||
layout_mode = 2
|
||||
text = "Test dialog"
|
||||
theme_override_styles/panel = SubResource("StyleBoxFlat_yovy8")
|
||||
|
||||
[node name="TextBox" type="Label" parent="VBoxContainer/PanelContainer"]
|
||||
custom_minimum_size = Vector2(96, 10)
|
||||
layout_mode = 2
|
||||
text = "Placeholder text"
|
||||
label_settings = SubResource("LabelSettings_8nvov")
|
||||
autowrap_mode = 3
|
||||
|
||||
[node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 3
|
||||
|
||||
[node name="Label" type="Label" parent="VBoxContainer/HBoxContainer"]
|
||||
[node name="PanelContainer" type="PanelContainer" parent="VBoxContainer/HBoxContainer"]
|
||||
layout_mode = 2
|
||||
theme_override_styles/panel = SubResource("StyleBoxFlat_dk342")
|
||||
|
||||
[node name="AuthorBox" type="Label" parent="VBoxContainer/HBoxContainer/PanelContainer"]
|
||||
custom_minimum_size = Vector2(96, 10)
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
size_flags_vertical = 0
|
||||
text = "NPC name"
|
||||
autowrap_mode = 3
|
||||
|
|
|
@ -9,7 +9,7 @@ script = ExtResource("1_xeo83")
|
|||
|
||||
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="."]
|
||||
sprite_frames = ExtResource("2_r10xf")
|
||||
frame_progress = 0.606473
|
||||
frame_progress = 0.220485
|
||||
|
||||
[node name="Interactable" parent="." instance=ExtResource("2_hcfxj")]
|
||||
SpriteOffset = Vector2(0, -35)
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=13 format=3 uid="uid://dfdsnwub212o6"]
|
||||
[gd_scene load_steps=14 format=3 uid="uid://dfdsnwub212o6"]
|
||||
|
||||
[ext_resource type="Script" path="res://scripts/Player.cs" id="1_68nsf"]
|
||||
[ext_resource type="SpriteFrames" uid="uid://e8ybb7seykdx" path="res://resources/sprites/player/player.tres" id="1_be2ex"]
|
||||
[ext_resource type="FontFile" uid="uid://dwn20pw40jpxm" path="res://fonts/ZxSpectrum7-nROZ0.ttf" id="3_w5ojp"]
|
||||
[ext_resource type="PackedScene" uid="uid://cmn7af4dsj8v2" path="res://prefabs/Dialog.tscn" id="4_owmws"]
|
||||
[ext_resource type="Script" path="res://scripts/ChatLogContainer.cs" id="4_tbl72"]
|
||||
[ext_resource type="PackedScene" uid="uid://phjermaw6phb" path="res://prefabs/AudioCollection.tscn" id="5_wnylg"]
|
||||
[ext_resource type="AudioStream" uid="uid://cb0344er3onkq" path="res://resources/sounds/door/doorOpen_1.ogg" id="7_2fkyu"]
|
||||
[ext_resource type="AudioStream" uid="uid://87caolv1uksk" path="res://resources/sounds/door/doorClose_3.ogg" id="8_4v0xv"]
|
||||
|
@ -41,26 +42,76 @@ shape = SubResource("RectangleShape2D_sed4o")
|
|||
offset = Vector2(0, -20)
|
||||
zoom = Vector2(2, 2)
|
||||
|
||||
[node name="ChatLog" type="PanelContainer" parent="Camera2D"]
|
||||
[node name="Control" type="Control" parent="Camera2D"]
|
||||
layout_mode = 3
|
||||
anchors_preset = 0
|
||||
offset_right = 40.0
|
||||
offset_bottom = 40.0
|
||||
theme = SubResource("Theme_8jldp")
|
||||
|
||||
[node name="ChatLog" type="PanelContainer" parent="Camera2D/Control"]
|
||||
layout_mode = 0
|
||||
offset_left = 160.0
|
||||
offset_top = -140.0
|
||||
offset_right = 276.0
|
||||
offset_right = 256.0
|
||||
offset_bottom = 100.0
|
||||
theme = SubResource("Theme_8jldp")
|
||||
theme_override_styles/panel = SubResource("StyleBoxFlat_l7l8c")
|
||||
|
||||
[node name="HFlowContainer" type="VBoxContainer" parent="Camera2D/ChatLog"]
|
||||
[node name="PanelContainer" type="PanelContainer" parent="Camera2D/Control"]
|
||||
layout_mode = 0
|
||||
offset_left = 160.0
|
||||
offset_top = -140.0
|
||||
offset_right = 256.0
|
||||
offset_bottom = -130.0
|
||||
theme_override_styles/panel = SubResource("StyleBoxFlat_l7l8c")
|
||||
|
||||
[node name="Label" type="Label" parent="Camera2D/Control/PanelContainer"]
|
||||
layout_mode = 2
|
||||
text = "Chat Log"
|
||||
|
||||
[node name="ChatLogContainer" type="VBoxContainer" parent="Camera2D/Control"]
|
||||
layout_mode = 2
|
||||
offset_left = 160.0
|
||||
offset_top = -130.0
|
||||
offset_right = 256.0
|
||||
offset_bottom = -56.0
|
||||
theme_override_constants/separation = 0
|
||||
script = ExtResource("4_tbl72")
|
||||
|
||||
[node name="PlaceholderDialog" parent="Camera2D/Control/ChatLogContainer" instance=ExtResource("4_owmws")]
|
||||
visible = false
|
||||
layout_mode = 2
|
||||
|
||||
[node name="Label" type="Label" parent="Camera2D/ChatLog/HFlowContainer"]
|
||||
[node name="PlaceholderDialog2" parent="Camera2D/Control/ChatLogContainer" instance=ExtResource("4_owmws")]
|
||||
visible = false
|
||||
layout_mode = 2
|
||||
text = "Chat"
|
||||
Text = "Placeholder text 2"
|
||||
Author = "NPC name 2"
|
||||
|
||||
[node name="Dialog" parent="Camera2D/ChatLog/HFlowContainer" instance=ExtResource("4_owmws")]
|
||||
[node name="CloseLabel" type="PanelContainer" parent="Camera2D/Control"]
|
||||
layout_mode = 2
|
||||
offset_left = 160.0
|
||||
offset_top = 90.0
|
||||
offset_right = 256.0
|
||||
offset_bottom = 100.0
|
||||
theme_override_styles/panel = SubResource("StyleBoxFlat_l7l8c")
|
||||
|
||||
[node name="Dialog2" parent="Camera2D/ChatLog/HFlowContainer" instance=ExtResource("4_owmws")]
|
||||
[node name="Label" type="Label" parent="Camera2D/Control/CloseLabel"]
|
||||
layout_mode = 2
|
||||
text = "C - Exit"
|
||||
|
||||
[node name="NextLabel" type="PanelContainer" parent="Camera2D/Control"]
|
||||
layout_mode = 2
|
||||
offset_left = 160.0
|
||||
offset_top = 90.0
|
||||
offset_right = 256.0
|
||||
offset_bottom = 100.0
|
||||
theme_override_styles/panel = SubResource("StyleBoxFlat_l7l8c")
|
||||
|
||||
[node name="Label" type="Label" parent="Camera2D/Control/NextLabel"]
|
||||
layout_mode = 2
|
||||
text = "E - Next"
|
||||
|
||||
[node name="Footsteps" parent="." instance=ExtResource("5_wnylg")]
|
||||
RandomPitch = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue