diff --git a/src/disclaimer.tscn b/src/disclaimer.tscn index 99618a4..64a15dd 100644 --- a/src/disclaimer.tscn +++ b/src/disclaimer.tscn @@ -86,8 +86,8 @@ size_flags_horizontal = 3 text = "Thank you for participating in our public alpha. The goal is to see if the core of our game works, if the mechanics are interesting and, if the game makes sense. -Right now, controller support is very limited and acessibility settings are spotty. -Both will be worked on while the alpha is running. +Right now and acessibility settings are spotty. +They will be worked on while the alpha is running. You will also not be able to help Lisa find a better frame of mind, as the second chapter is not yet implemented. Please know that many disruptive thoughts Lisa has in the first chapter were designed to be resolved later in the game. The game also does not support save games yet. diff --git a/src/thank-you.tscn b/src/thank-you.tscn index 9818173..8a47d3a 100644 --- a/src/thank-you.tscn +++ b/src/thank-you.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=8 format=3 uid="uid://citwb7f4dl3l1"] +[gd_scene load_steps=9 format=3 uid="uid://citwb7f4dl3l1"] [ext_resource type="Texture2D" uid="uid://d0ucjqi8tx6vt" path="res://import/interface-elements/frame.png" id="1_picwm"] [ext_resource type="FontFile" uid="uid://cb66e4mqysgf8" path="res://import/fonts/title_handwriting.tres" id="2_jb5y5"] @@ -12,6 +12,7 @@ script/source = "extends Button func _pressed(): OS.shell_open(\"https://cryptpad.fr/form/#/2/form/view/T9XKMBPfCz85HoGGnt8nwl1OMyU18dMi7ubZZUJlBTM/\") + get_tree().quit() " [sub_resource type="GDScript" id="GDScript_m3ofj"] @@ -22,6 +23,14 @@ func _pressed(): OS.shell_open(\"https://gitlab.com/betalars/frame-of-mind/-/blob/main/design/contributions.md\") " +[sub_resource type="GDScript" id="GDScript_unahj"] +script/source = "extends Button + + +func _on_pressed(): + get_tree().quit() +" + [node name="ending" type="Panel"] anchors_preset = 15 anchor_right = 1.0 @@ -129,18 +138,35 @@ texture = ExtResource("3_oob40") expand_mode = 2 stretch_mode = 4 -[node name="card" parent="." instance=ExtResource("4_48hwg")] -position = Vector2(1195, 329) +[node name="card" parent="childhood/PanelContainer" instance=ExtResource("4_48hwg")] +process_mode = 4 +position = Vector2(1164, 301) text = "Lukas did not ask for consent, he didn't explain a thing, I didn’t even move! Yet he dared to assume, that " -[node name="post-it" parent="card" instance=ExtResource("5_sfuv4")] +[node name="post-it" parent="childhood/PanelContainer/card" instance=ExtResource("5_sfuv4")] position = Vector2(-61, 110) text = "I was wet so I must have been into it" -[node name="card2" parent="." instance=ExtResource("4_48hwg")] -position = Vector2(1201, 617) +[node name="card2" parent="childhood/PanelContainer" instance=ExtResource("4_48hwg")] +process_mode = 4 +position = Vector2(1170, 589) text = "Lukas jumped me, he didn't even explain a thing or ask consent. I was confused and paralised, so " -[node name="post-it" parent="card2" instance=ExtResource("5_sfuv4")] +[node name="post-it" parent="childhood/PanelContainer/card2" instance=ExtResource("5_sfuv4")] position = Vector2(-61, 110) text = "I didn't say stop" + +[node name="Button" type="Button" parent="."] +layout_mode = 1 +anchors_preset = 1 +anchor_left = 1.0 +anchor_right = 1.0 +offset_left = -75.0 +offset_top = 17.0 +offset_right = -24.0 +offset_bottom = 60.0 +grow_horizontal = 0 +text = "quit" +script = SubResource("GDScript_unahj") + +[connection signal="pressed" from="Button" to="Button" method="_on_pressed"]