Edit dialogue balloons

This commit is contained in:
2025-12-01 01:01:33 -08:00
parent 4ee4e02a51
commit edff41af22
23 changed files with 346 additions and 263 deletions

View File

@@ -1,4 +1,4 @@
[gd_scene load_steps=20 format=3 uid="uid://drrynjlwqt8wi"]
[gd_scene load_steps=21 format=3 uid="uid://drrynjlwqt8wi"]
[ext_resource type="Script" uid="uid://5b3w40kwakl3" path="res://addons/dialogue_manager/example_balloon/ExampleBalloon.cs" id="1_okfmu"]
[ext_resource type="FontFile" uid="uid://dit3vylt7hmmx" path="res://src/ui/fonts/FT88-Regular.ttf" id="2_c4c1f"]
@@ -70,6 +70,8 @@ MarginContainer/constants/margin_right = 30
MarginContainer/constants/margin_top = 15
Panel/styles/panel = SubResource("StyleBoxFlat_uy0d5")
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_g5mp8"]
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_8reha"]
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_cb5sp"]
@@ -104,36 +106,31 @@ grow_vertical = 2
theme = SubResource("Theme_qq3yp")
[node name="Panel" type="Panel" parent="Balloon"]
custom_minimum_size = Vector2(1000, 300)
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme_override_styles/panel = SubResource("StyleBoxEmpty_g5mp8")
[node name="Dialogue" type="AspectRatioContainer" parent="Balloon/Panel"]
custom_minimum_size = Vector2(500, 250)
layout_mode = 1
anchors_preset = 12
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
offset_top = -301.0
offset_bottom = -25.0
grow_horizontal = 2
grow_vertical = 0
size_flags_vertical = 3
alignment_vertical = 2
[node name="MarginContainer" type="MarginContainer" parent="Balloon/Panel"]
layout_mode = 2
offset_top = 780.0
offset_right = 1920.0
offset_bottom = 1080.0
theme_override_constants/margin_left = 150
theme_override_constants/margin_top = 50
theme_override_constants/margin_right = 50
theme_override_constants/margin_bottom = 50
[node name="VBoxContainer" type="VBoxContainer" parent="Balloon/Panel/Dialogue"]
[node name="VBoxContainer" type="VBoxContainer" parent="Balloon/Panel/MarginContainer"]
layout_mode = 2
theme_override_constants/separation = 10
[node name="CharacterLabel" type="RichTextLabel" parent="Balloon/Panel/Dialogue/VBoxContainer"]
[node name="CharacterLabel" type="RichTextLabel" parent="Balloon/Panel/MarginContainer/VBoxContainer"]
unique_name_in_owner = true
modulate = Color(1, 1, 1, 0.501961)
custom_minimum_size = Vector2(800, 60)
layout_mode = 2
size_flags_vertical = 10
mouse_filter = 1
@@ -149,9 +146,8 @@ bbcode_enabled = true
text = "Character"
fit_content = true
scroll_active = false
horizontal_alignment = 1
[node name="DialogueLabel" parent="Balloon/Panel/Dialogue/VBoxContainer" instance=ExtResource("2_jm6sr")]
[node name="DialogueLabel" parent="Balloon/Panel/MarginContainer/VBoxContainer" instance=ExtResource("2_jm6sr")]
unique_name_in_owner = true
custom_minimum_size = Vector2(800, 200)
layout_mode = 2

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://s3mtv6c2emph"
path="res://.godot/imported/Gallery.png-dbaaa8cf38dbf1813f7cad3c9671c040.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/ui/gallery/Gallery.png"
dest_files=["res://.godot/imported/Gallery.png-dbaaa8cf38dbf1813f7cad3c9671c040.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0

View File

@@ -8,36 +8,15 @@ public partial class GalleryMenu : Control
{
public override void _Notification(int what) => this.Notify(what);
[Node] public Label Item1Label { get; set; }
[Node] public Label Item2Label { get; set; }
[Node] public Label Item3Label { get; set; }
[Node] public Label Item4Label { get; set; }
[Node] public Label Item5Label { get; set; }
[Node] public Label Item6Label { get; set; }
[Node] public Label Item7Label { get; set; }
[Node] public Label Item8Label { get; set; }
[Node] public ColorRect Item1Thumb { get; set; }
[Node] public ColorRect Item2Thumb { get; set; }
[Node] public ColorRect Item3Thumb { get; set; }
[Node] public ColorRect Item4Thumb { get; set; }
[Node] public ColorRect Item5Thumb { get; set; }
[Node] public ColorRect Item6Thumb { get; set; }
[Node] public ColorRect Item7Thumb { get; set; }
[Node] public ColorRect Item8Thumb { get; set; }
[Node] public TextureButton PreviousButton { get; set; }
[Node] public TextureButton NextButton { get; set; }
[Node] public TextureButton BackButton { get; set; }
public GalleryData GalleryData { get; set; }
public void OnReady()
{
GalleryData = new GalleryData() { PlaceholderImage1 = true };
if (GalleryData.PlaceholderImage1)
Item1Label.Text = "Placeholder";
}
public void Load(GalleryData galleryData)
{
if (galleryData.PlaceholderImage1)
Item1Label.Text = "Placeholder";
}
}

View File

@@ -2,13 +2,8 @@
[ext_resource type="Script" uid="uid://cl0fi7kgimquk" path="res://src/ui/gallery/GalleryMenu.cs" id="1_lvvvw"]
[ext_resource type="LabelSettings" uid="uid://wc363u5t1yi2" path="res://src/ui/label_settings/HeadingFont.tres" id="1_qekcq"]
[sub_resource type="Gradient" id="Gradient_6y3ag"]
offsets = PackedFloat32Array(0.0501636, 0.745911, 1)
colors = PackedColorArray(0.0770514, 0.225922, 0.0437089, 1, 0.198692, 0.388726, 0.192961, 1, 3.85046e-07, 0.276787, 0.0375416, 1)
[sub_resource type="GradientTexture2D" id="GradientTexture2D_qekcq"]
gradient = SubResource("Gradient_6y3ag")
[ext_resource type="Texture2D" uid="uid://s3mtv6c2emph" path="res://src/ui/gallery/Gallery.png" id="2_lvvvw"]
[ext_resource type="Texture2D" uid="uid://b7nxeq5qft3xa" path="res://src/ui/gallery/Line 1.png" id="4_s04nx"]
[node name="GalleryMenu" type="Control"]
layout_mode = 3
@@ -28,221 +23,363 @@ anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
texture = SubResource("GradientTexture2D_qekcq")
texture = ExtResource("2_lvvvw")
[node name="MarginContainer" type="MarginContainer" parent="TextureRect"]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
offset_left = 141.0
offset_top = 212.0
offset_right = -103.0
offset_bottom = -130.0
grow_horizontal = 2
grow_vertical = 2
theme_override_constants/margin_left = 95
theme_override_constants/margin_top = 33
theme_override_constants/margin_right = 70
theme_override_constants/margin_bottom = 100
[node name="VBoxContainer" type="VBoxContainer" parent="TextureRect/MarginContainer"]
layout_mode = 2
theme_override_constants/separation = 10
[node name="ColorRect" type="ColorRect" parent="TextureRect/MarginContainer/VBoxContainer"]
custom_minimum_size = Vector2(427, 100)
[node name="MarginContainer" type="MarginContainer" parent="TextureRect/MarginContainer/VBoxContainer"]
layout_mode = 2
size_flags_horizontal = 0
color = Color(0.0941176, 0.0941176, 0.0941176, 0.980392)
[node name="MarginContainer" type="MarginContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect"]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme_override_constants/margin_left = 15
[node name="Label" type="Label" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect/MarginContainer"]
layout_mode = 2
text = "Gallery"
label_settings = ExtResource("1_qekcq")
[node name="ColorRect2" type="ColorRect" parent="TextureRect/MarginContainer/VBoxContainer"]
layout_mode = 2
size_flags_vertical = 3
color = Color(0.0941176, 0.0941176, 0.0941176, 0.980392)
[node name="MarginContainer" type="MarginContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2"]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
size_flags_vertical = 3
theme_override_constants/margin_left = 10
theme_override_constants/margin_top = 10
theme_override_constants/margin_right = 10
theme_override_constants/margin_bottom = 10
[node name="ReferenceRect" type="ReferenceRect" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer"]
[node name="ReferenceRect" type="ReferenceRect" parent="TextureRect/MarginContainer/VBoxContainer/MarginContainer"]
layout_mode = 2
border_color = Color(1, 1, 1, 1)
border_width = 2.0
border_color = Color(1, 1, 1, 0.737255)
border_width = 3.0
editor_only = false
[node name="MarginContainer" type="MarginContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect"]
[node name="MarginContainer2" type="MarginContainer" parent="TextureRect"]
layout_mode = 0
offset_right = 40.0
offset_bottom = 40.0
theme_override_constants/margin_left = 25
theme_override_constants/margin_top = 80
theme_override_constants/margin_right = 15
theme_override_constants/margin_bottom = 10
offset_left = 155.0
offset_top = 225.0
offset_right = 1814.0
offset_bottom = 943.0
[node name="VBoxContainer" type="VBoxContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer"]
[node name="VBoxContainer" type="VBoxContainer" parent="TextureRect/MarginContainer2"]
layout_mode = 2
theme_override_constants/separation = 25
[node name="VFlowContainer" type="VFlowContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer"]
[node name="VFlowContainer" type="VFlowContainer" parent="TextureRect/MarginContainer2/VBoxContainer"]
layout_mode = 2
theme_override_constants/h_separation = 25
[node name="Item1Thumb" type="ColorRect" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer"]
[node name="Item1Thumb" type="ColorRect" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer"]
unique_name_in_owner = true
custom_minimum_size = Vector2(400, 200)
custom_minimum_size = Vector2(300, 200)
layout_mode = 2
[node name="Item2Thumb" type="ColorRect" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer"]
[node name="Item2Thumb" type="ColorRect" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer"]
unique_name_in_owner = true
custom_minimum_size = Vector2(400, 200)
custom_minimum_size = Vector2(300, 200)
layout_mode = 2
[node name="Item3Thumb" type="ColorRect" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer"]
[node name="Item3Thumb" type="ColorRect" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer"]
unique_name_in_owner = true
custom_minimum_size = Vector2(400, 200)
custom_minimum_size = Vector2(300, 200)
layout_mode = 2
[node name="Item4Thumb" type="ColorRect" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer"]
[node name="Item4Thumb" type="ColorRect" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer"]
unique_name_in_owner = true
custom_minimum_size = Vector2(400, 200)
custom_minimum_size = Vector2(300, 200)
layout_mode = 2
[node name="VFlowContainer3" type="VFlowContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer"]
[node name="Item5Thumb" type="ColorRect" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer"]
unique_name_in_owner = true
custom_minimum_size = Vector2(300, 200)
layout_mode = 2
[node name="VFlowContainer3" type="VFlowContainer" parent="TextureRect/MarginContainer2/VBoxContainer"]
layout_mode = 2
theme_override_constants/h_separation = 25
[node name="CenterContainer" type="CenterContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer3"]
custom_minimum_size = Vector2(400, 0)
[node name="CenterContainer" type="CenterContainer" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer3"]
custom_minimum_size = Vector2(300, 0)
layout_mode = 2
size_flags_vertical = 3
[node name="Item1Label" type="Label" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer3/CenterContainer"]
[node name="Item1Label" type="Label" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer3/CenterContainer"]
unique_name_in_owner = true
layout_mode = 2
text = "???"
label_settings = ExtResource("1_qekcq")
[node name="CenterContainer2" type="CenterContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer3"]
custom_minimum_size = Vector2(400, 0)
[node name="CenterContainer2" type="CenterContainer" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer3"]
custom_minimum_size = Vector2(300, 0)
layout_mode = 2
size_flags_vertical = 3
[node name="Item2Label" type="Label" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer3/CenterContainer2"]
[node name="Item2Label" type="Label" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer3/CenterContainer2"]
unique_name_in_owner = true
layout_mode = 2
text = "???"
label_settings = ExtResource("1_qekcq")
[node name="CenterContainer3" type="CenterContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer3"]
custom_minimum_size = Vector2(400, 0)
[node name="CenterContainer3" type="CenterContainer" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer3"]
custom_minimum_size = Vector2(300, 0)
layout_mode = 2
size_flags_vertical = 3
[node name="Item3Label" type="Label" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer3/CenterContainer3"]
[node name="Item3Label" type="Label" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer3/CenterContainer3"]
unique_name_in_owner = true
layout_mode = 2
text = "???"
label_settings = ExtResource("1_qekcq")
[node name="CenterContainer4" type="CenterContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer3"]
custom_minimum_size = Vector2(400, 0)
[node name="CenterContainer4" type="CenterContainer" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer3"]
custom_minimum_size = Vector2(300, 0)
layout_mode = 2
size_flags_vertical = 3
[node name="Item4Label" type="Label" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer3/CenterContainer4"]
[node name="Item4Label" type="Label" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer3/CenterContainer4"]
unique_name_in_owner = true
layout_mode = 2
text = "???"
label_settings = ExtResource("1_qekcq")
[node name="VFlowContainer2" type="VFlowContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer"]
[node name="CenterContainer5" type="CenterContainer" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer3"]
custom_minimum_size = Vector2(300, 0)
layout_mode = 2
size_flags_vertical = 3
[node name="Item4Label" type="Label" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer3/CenterContainer5"]
layout_mode = 2
text = "???"
label_settings = ExtResource("1_qekcq")
[node name="VFlowContainer2" type="VFlowContainer" parent="TextureRect/MarginContainer2/VBoxContainer"]
layout_mode = 2
theme_override_constants/h_separation = 25
[node name="Item5Thumb" type="ColorRect" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer2"]
unique_name_in_owner = true
custom_minimum_size = Vector2(400, 200)
[node name="Item1Thumb" type="ColorRect" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer2"]
custom_minimum_size = Vector2(300, 200)
layout_mode = 2
[node name="Item6Thumb" type="ColorRect" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer2"]
unique_name_in_owner = true
custom_minimum_size = Vector2(400, 200)
[node name="Item2Thumb" type="ColorRect" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer2"]
custom_minimum_size = Vector2(300, 200)
layout_mode = 2
[node name="Item7Thumb" type="ColorRect" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer2"]
unique_name_in_owner = true
custom_minimum_size = Vector2(400, 200)
[node name="Item3Thumb" type="ColorRect" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer2"]
custom_minimum_size = Vector2(300, 200)
layout_mode = 2
[node name="Item8Thumb" type="ColorRect" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer2"]
unique_name_in_owner = true
custom_minimum_size = Vector2(400, 200)
[node name="Item4Thumb" type="ColorRect" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer2"]
custom_minimum_size = Vector2(300, 200)
layout_mode = 2
[node name="VFlowContainer4" type="VFlowContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer"]
[node name="Item5Thumb" type="ColorRect" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer2"]
custom_minimum_size = Vector2(300, 200)
layout_mode = 2
[node name="VFlowContainer4" type="VFlowContainer" parent="TextureRect/MarginContainer2/VBoxContainer"]
layout_mode = 2
theme_override_constants/h_separation = 25
[node name="CenterContainer" type="CenterContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer4"]
custom_minimum_size = Vector2(400, 0)
[node name="CenterContainer" type="CenterContainer" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer4"]
custom_minimum_size = Vector2(300, 0)
layout_mode = 2
size_flags_vertical = 3
[node name="Item5Label" type="Label" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer4/CenterContainer"]
unique_name_in_owner = true
[node name="Item1Label" type="Label" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer4/CenterContainer"]
layout_mode = 2
text = "???"
label_settings = ExtResource("1_qekcq")
[node name="CenterContainer2" type="CenterContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer4"]
custom_minimum_size = Vector2(400, 0)
[node name="CenterContainer2" type="CenterContainer" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer4"]
custom_minimum_size = Vector2(300, 0)
layout_mode = 2
size_flags_vertical = 3
[node name="Item6Label" type="Label" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer4/CenterContainer2"]
unique_name_in_owner = true
[node name="Item2Label" type="Label" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer4/CenterContainer2"]
layout_mode = 2
text = "???"
label_settings = ExtResource("1_qekcq")
[node name="CenterContainer3" type="CenterContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer4"]
custom_minimum_size = Vector2(400, 0)
[node name="CenterContainer3" type="CenterContainer" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer4"]
custom_minimum_size = Vector2(300, 0)
layout_mode = 2
size_flags_vertical = 3
[node name="Item7Label" type="Label" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer4/CenterContainer3"]
unique_name_in_owner = true
[node name="Item3Label" type="Label" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer4/CenterContainer3"]
layout_mode = 2
text = "???"
label_settings = ExtResource("1_qekcq")
[node name="CenterContainer4" type="CenterContainer" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer4"]
custom_minimum_size = Vector2(400, 0)
[node name="CenterContainer4" type="CenterContainer" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer4"]
custom_minimum_size = Vector2(300, 0)
layout_mode = 2
size_flags_vertical = 3
[node name="Item8Label" type="Label" parent="TextureRect/MarginContainer/VBoxContainer/ColorRect2/MarginContainer/ReferenceRect/MarginContainer/VBoxContainer/VFlowContainer4/CenterContainer4"]
unique_name_in_owner = true
[node name="Item4Label" type="Label" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer4/CenterContainer4"]
layout_mode = 2
text = "???"
label_settings = ExtResource("1_qekcq")
[node name="CenterContainer5" type="CenterContainer" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer4"]
custom_minimum_size = Vector2(300, 0)
layout_mode = 2
size_flags_vertical = 3
[node name="Item4Label" type="Label" parent="TextureRect/MarginContainer2/VBoxContainer/VFlowContainer4/CenterContainer5"]
layout_mode = 2
text = "???"
label_settings = ExtResource("1_qekcq")
[node name="ItemButton1" type="TextureButton" parent="."]
unique_name_in_owner = true
visible = false
layout_mode = 0
offset_left = 1621.0
offset_top = 1030.0
offset_right = 1730.0
offset_bottom = 1034.0
texture_focused = ExtResource("4_s04nx")
stretch_mode = 0
flip_h = true
[node name="ItemButton2" type="TextureButton" parent="."]
unique_name_in_owner = true
visible = false
layout_mode = 0
offset_left = 1621.0
offset_top = 1030.0
offset_right = 1730.0
offset_bottom = 1034.0
texture_focused = ExtResource("4_s04nx")
stretch_mode = 0
flip_h = true
[node name="ItemButton3" type="TextureButton" parent="."]
unique_name_in_owner = true
visible = false
layout_mode = 0
offset_left = 1621.0
offset_top = 1030.0
offset_right = 1730.0
offset_bottom = 1034.0
texture_focused = ExtResource("4_s04nx")
stretch_mode = 0
flip_h = true
[node name="ItemButton4" type="TextureButton" parent="."]
unique_name_in_owner = true
visible = false
layout_mode = 0
offset_left = 1621.0
offset_top = 1030.0
offset_right = 1730.0
offset_bottom = 1034.0
texture_focused = ExtResource("4_s04nx")
stretch_mode = 0
flip_h = true
[node name="ItemButton5" type="TextureButton" parent="."]
unique_name_in_owner = true
visible = false
layout_mode = 0
offset_left = 1621.0
offset_top = 1030.0
offset_right = 1730.0
offset_bottom = 1034.0
texture_focused = ExtResource("4_s04nx")
stretch_mode = 0
flip_h = true
[node name="ItemButton6" type="TextureButton" parent="."]
unique_name_in_owner = true
visible = false
layout_mode = 0
offset_left = 1621.0
offset_top = 1030.0
offset_right = 1730.0
offset_bottom = 1034.0
texture_focused = ExtResource("4_s04nx")
stretch_mode = 0
flip_h = true
[node name="ItemButton7" type="TextureButton" parent="."]
unique_name_in_owner = true
visible = false
layout_mode = 0
offset_left = 1621.0
offset_top = 1030.0
offset_right = 1730.0
offset_bottom = 1034.0
texture_focused = ExtResource("4_s04nx")
stretch_mode = 0
flip_h = true
[node name="ItemButton8" type="TextureButton" parent="."]
unique_name_in_owner = true
visible = false
layout_mode = 0
offset_left = 1621.0
offset_top = 1030.0
offset_right = 1730.0
offset_bottom = 1034.0
texture_focused = ExtResource("4_s04nx")
stretch_mode = 0
flip_h = true
[node name="ItemButton9" type="TextureButton" parent="."]
unique_name_in_owner = true
visible = false
layout_mode = 0
offset_left = 1621.0
offset_top = 1030.0
offset_right = 1730.0
offset_bottom = 1034.0
texture_focused = ExtResource("4_s04nx")
stretch_mode = 0
flip_h = true
[node name="ItemButton10" type="TextureButton" parent="."]
unique_name_in_owner = true
visible = false
layout_mode = 0
offset_left = 1621.0
offset_top = 1030.0
offset_right = 1730.0
offset_bottom = 1034.0
texture_focused = ExtResource("4_s04nx")
stretch_mode = 0
flip_h = true
[node name="PreviousButton" type="TextureButton" parent="."]
unique_name_in_owner = true
layout_mode = 0
offset_left = 974.0
offset_top = 1030.0
offset_right = 1157.0
offset_bottom = 1034.0
texture_focused = ExtResource("4_s04nx")
stretch_mode = 0
flip_h = true
[node name="NextButton" type="TextureButton" parent="."]
unique_name_in_owner = true
layout_mode = 0
offset_left = 1320.0
offset_top = 1030.0
offset_right = 1417.0
offset_bottom = 1034.0
texture_focused = ExtResource("4_s04nx")
stretch_mode = 0
flip_h = true
[node name="BackButton" type="TextureButton" parent="."]
unique_name_in_owner = true
layout_mode = 0
offset_left = 257.0
offset_top = 589.0
offset_right = 366.0
offset_bottom = 593.0
texture_focused = ExtResource("4_s04nx")
stretch_mode = 0
flip_h = true

Binary file not shown.

After

Width:  |  Height:  |  Size: 237 B

View File

@@ -0,0 +1,34 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://b7nxeq5qft3xa"
path="res://.godot/imported/Line 1.png-3c500857f00bf60ba9b0e6058df44adf.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://src/ui/gallery/Line 1.png"
dest_files=["res://.godot/imported/Line 1.png-3c500857f00bf60ba9b0e6058df44adf.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=0