frame-of-mind/src/disclaimer.tscn

165 lines
6.1 KiB
Plaintext
Raw Normal View History

2025-10-07 22:33:15 +00:00
[gd_scene load_steps=20 format=3 uid="uid://6aaxpvoepqrm"]
2023-07-15 22:58:29 +00:00
[ext_resource type="Texture2D" uid="uid://d0ucjqi8tx6vt" path="res://import/interface-elements/frame.png" id="1_wpq8h"]
[ext_resource type="Texture2D" uid="uid://bwicl5q0lw06q" path="res://import/interface-elements/bottom.png" id="2_bktn7"]
2025-10-07 22:33:15 +00:00
[ext_resource type="Script" uid="uid://dbap0gqox0ty1" path="res://addons/markdownlabel/markdownlabel.gd" id="2_pl7dp"]
[ext_resource type="Script" uid="uid://dcx7crs23nf4" path="res://addons/markdownlabel/header_formats/h1_format.gd" id="3_cyrrf"]
[ext_resource type="Script" uid="uid://d0sin64i4v3op" path="res://addons/markdownlabel/header_formats/h2_format.gd" id="4_n0bfa"]
[ext_resource type="Script" uid="uid://dlok0dv1tq2bf" path="res://addons/markdownlabel/header_formats/h3_format.gd" id="5_vf10x"]
[ext_resource type="Script" uid="uid://bayuh2vafablg" path="res://addons/markdownlabel/header_formats/h4_format.gd" id="6_63x3b"]
[ext_resource type="Script" uid="uid://dfr1w7u3jgni3" path="res://addons/markdownlabel/header_formats/h5_format.gd" id="7_sp2lx"]
[ext_resource type="Script" uid="uid://bsi6dexoofpe6" path="res://addons/markdownlabel/header_formats/h6_format.gd" id="8_bd0uj"]
[ext_resource type="Script" uid="uid://cxton1pffwxk4" path="res://button_themer.gd" id="9_pl7dp"]
2023-07-15 22:58:29 +00:00
[sub_resource type="GDScript" id="GDScript_nkjm2"]
script/source = "extends Panel
signal on_read
func _ready():
$childhood/PanelContainer/VBoxContainer/Start.grab_focus()
2023-07-15 22:58:29 +00:00
func _on_start_pressed():
emit_signal(\"on_read\")
hide()
2025-10-07 22:33:15 +00:00
mouse_filter = MOUSE_FILTER_PASS
2023-07-15 22:58:29 +00:00
"
2025-10-07 22:33:15 +00:00
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_cyrrf"]
content_margin_left = 5.0
content_margin_top = 20.0
content_margin_right = 5.0
content_margin_bottom = 5.0
2023-07-15 22:58:29 +00:00
2025-10-07 22:33:15 +00:00
[sub_resource type="StyleBoxEmpty" id="StyleBoxEmpty_kg2u8"]
content_margin_left = 20.0
content_margin_top = 5.0
content_margin_right = 50.0
content_margin_bottom = 5.0
2023-07-15 22:58:29 +00:00
2025-10-07 22:33:15 +00:00
[sub_resource type="Resource" id="Resource_4n2vh"]
resource_local_to_scene = true
script = ExtResource("3_cyrrf")
2023-07-15 22:58:29 +00:00
2025-10-07 22:33:15 +00:00
[sub_resource type="Resource" id="Resource_vhiu8"]
resource_local_to_scene = true
script = ExtResource("4_n0bfa")
2023-07-15 22:58:29 +00:00
2025-10-07 22:33:15 +00:00
[sub_resource type="Resource" id="Resource_sualy"]
resource_local_to_scene = true
script = ExtResource("5_vf10x")
2023-07-15 22:58:29 +00:00
2025-10-07 22:33:15 +00:00
[sub_resource type="Resource" id="Resource_w3hq6"]
resource_local_to_scene = true
script = ExtResource("6_63x3b")
[sub_resource type="Resource" id="Resource_parnl"]
resource_local_to_scene = true
script = ExtResource("7_sp2lx")
[sub_resource type="Resource" id="Resource_5sp7x"]
resource_local_to_scene = true
script = ExtResource("8_bd0uj")
2023-07-15 22:58:29 +00:00
[node name="Disclaimer" type="Panel"]
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = SubResource("GDScript_nkjm2")
[node name="childhood" type="CenterContainer" parent="."]
self_modulate = Color(1, 1, 1, 0.923078)
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
[node name="PanelContainer" type="PanelContainer" parent="childhood"]
layout_mode = 2
mouse_filter = 1
[node name="StartFrame" type="TextureRect" parent="childhood/PanelContainer"]
custom_minimum_size = Vector2(0, 900)
layout_mode = 2
size_flags_vertical = 0
texture = ExtResource("1_wpq8h")
expand_mode = 2
stretch_mode = 4
[node name="Panel" type="PanelContainer" parent="childhood/PanelContainer/StartFrame"]
show_behind_parent = true
2025-10-07 22:33:15 +00:00
layout_mode = 0
2023-07-15 22:58:29 +00:00
offset_left = 199.0
offset_top = -112.0
offset_right = 1039.0
offset_bottom = 697.0
rotation = 0.459022
mouse_filter = 1
[node name="VBoxContainer" type="VBoxContainer" parent="childhood/PanelContainer"]
layout_mode = 2
[node name="Label" type="Label" parent="childhood/PanelContainer/VBoxContainer"]
layout_mode = 2
theme_type_variation = &"HeaderLarge"
2025-10-07 22:33:15 +00:00
theme_override_styles/normal = SubResource("StyleBoxEmpty_cyrrf")
text = "Welcome to the Frame of Mind BETA"
2023-07-15 22:58:29 +00:00
2025-10-07 22:33:15 +00:00
[node name="Label2" type="RichTextLabel" parent="childhood/PanelContainer/VBoxContainer"]
2023-07-15 22:58:29 +00:00
layout_mode = 2
2025-10-07 22:33:15 +00:00
size_flags_vertical = 3
theme_override_styles/normal = SubResource("StyleBoxEmpty_kg2u8")
theme_override_styles/focus = SubResource("StyleBoxEmpty_kg2u8")
bbcode_enabled = true
text = "Thanks for participating in the semi-public beta! Access is limited to the amount of feedback we can reasonably process. :)
While we are close to release and won't be making any groundbreaking changes anymore, you can help push us over the final stretch.
[font_size=28]The most important bits[/font_size]
[ol]Please fill out the form that opens after you close the game!
Also when you stopped playing in the middle.
We are aware of Typos and Placeholder assets in the subway and second room.
Have fun playing![/ol]"
2024-02-02 00:03:28 +00:00
justification_flags = 131
2023-07-15 22:58:29 +00:00
visible_characters_behavior = 1
2025-10-07 22:33:15 +00:00
script = ExtResource("2_pl7dp")
markdown_text = "Thanks for participating in the semi-public beta! Access is limited to the amount of feedback we can reasonably process. :)
While we are close to release and won't be making any groundbreaking changes anymore, you can help push us over the final stretch.
### The most important bits
1. Please fill out the form that opens after you close the game!
2. Also when you stopped playing in the middle.
3. We are aware of Typos and Placeholder assets in the subway and second room.
4. Have fun playing!"
h1 = SubResource("Resource_4n2vh")
h2 = SubResource("Resource_vhiu8")
h3 = SubResource("Resource_sualy")
h4 = SubResource("Resource_w3hq6")
h5 = SubResource("Resource_parnl")
h6 = SubResource("Resource_5sp7x")
metadata/_custom_type_script = "uid://dbap0gqox0ty1"
2023-07-15 22:58:29 +00:00
[node name="Start" type="Button" parent="childhood/PanelContainer/VBoxContainer"]
2025-10-07 22:33:15 +00:00
clip_contents = true
2023-07-15 22:58:29 +00:00
layout_mode = 2
size_flags_horizontal = 4
2025-10-07 22:33:15 +00:00
theme_type_variation = &"H1Button"
text = "I understand, please start the beta"
script = ExtResource("9_pl7dp")
metadata/_custom_type_script = "uid://cxton1pffwxk4"
2023-07-15 22:58:29 +00:00
[node name="StartBottom" type="TextureRect" parent="childhood/PanelContainer/VBoxContainer"]
custom_minimum_size = Vector2(0, 64)
layout_mode = 2
size_flags_vertical = 8
texture = ExtResource("2_bktn7")
expand_mode = 2
stretch_mode = 4
[connection signal="pressed" from="childhood/PanelContainer/VBoxContainer/Start" to="." method="_on_start_pressed"]