adding thank you and disclaimer screen
This commit is contained in:
parent
92ee2471a2
commit
b5924fdd8b
|
|
@ -0,0 +1,132 @@
|
|||
[gd_scene load_steps=7 format=3 uid="uid://6aaxpvoepqrm"]
|
||||
|
||||
[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"]
|
||||
[ext_resource type="FontFile" uid="uid://cb66e4mqysgf8" path="res://import/fonts/title_handwriting.tres" id="2_rmsdo"]
|
||||
|
||||
[sub_resource type="GDScript" id="GDScript_nkjm2"]
|
||||
script/source = "extends Panel
|
||||
|
||||
signal on_read
|
||||
|
||||
func _ready():
|
||||
$childhood/PanelContainer/VBoxContainer/Start.grab_focus()
|
||||
|
||||
func _on_start_pressed():
|
||||
emit_signal(\"on_read\")
|
||||
hide()
|
||||
"
|
||||
|
||||
[sub_resource type="GDScript" id="GDScript_tb2ju"]
|
||||
script/source = "extends Button
|
||||
|
||||
|
||||
func _pressed():
|
||||
OS.shell_open(\"https://gitlab.com/betalars/frame-of-mind/-/wikis/home\")
|
||||
"
|
||||
|
||||
[sub_resource type="GDScript" id="GDScript_m3ofj"]
|
||||
script/source = "extends Button
|
||||
|
||||
|
||||
func _pressed():
|
||||
OS.shell_open(\"https://gitlab.com/betalars/frame-of-mind/-/blob/main/design/contributions.md\")
|
||||
"
|
||||
|
||||
[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
|
||||
layout_mode = 2
|
||||
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"
|
||||
text = "Welcome to the frame of mind alpha"
|
||||
|
||||
[node name="Label2" type="Label" parent="childhood/PanelContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
text = "Thank you for participating in our public alpha. The goal is to see if the premise of our game works, if the mechanics are interesting and, if the game makes sense.
|
||||
|
||||
We would like to inform you: especially the acessibility settings right now are not functional. This will be our main focus while we wait for the first batch of alpha feedback.
|
||||
There are also no save-games yet.
|
||||
|
||||
Frame of Mind uses a Creative Commons Non Commercial Share Alike 4.0 license. You can use the game and it's assets freely, as long as you also contribute back to the creative Commons Community. Feel free to reach out if you need a commercial License.
|
||||
Twokinds is created by Thomas J. Fischbach, who granted us permission to use it in a Creative Commons Project."
|
||||
autowrap_mode = 3
|
||||
visible_characters_behavior = 1
|
||||
|
||||
[node name="Start" type="Button" parent="childhood/PanelContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 4
|
||||
theme_override_fonts/font = ExtResource("2_rmsdo")
|
||||
theme_override_font_sizes/font_size = 50
|
||||
text = "Start the alpha!"
|
||||
|
||||
[node name="Label3" type="Label" parent="childhood/PanelContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
text = "the following links will take you to gilab.com"
|
||||
horizontal_alignment = 1
|
||||
autowrap_mode = 3
|
||||
visible_characters_behavior = 1
|
||||
|
||||
[node name="Button3" type="Button" parent="childhood/PanelContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 4
|
||||
text = "Show me the Wiki"
|
||||
script = SubResource("GDScript_tb2ju")
|
||||
|
||||
[node name="Button2" type="Button" parent="childhood/PanelContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 4
|
||||
text = "Show me Creative Commons Projects,
|
||||
that are used by the game."
|
||||
script = SubResource("GDScript_m3ofj")
|
||||
|
||||
[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"]
|
||||
|
|
@ -0,0 +1,126 @@
|
|||
[gd_scene load_steps=6 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"]
|
||||
[ext_resource type="Texture2D" uid="uid://bwicl5q0lw06q" path="res://import/interface-elements/bottom.png" id="3_oob40"]
|
||||
|
||||
[sub_resource type="GDScript" id="GDScript_d32iw"]
|
||||
script/source = "extends Button
|
||||
|
||||
|
||||
func _pressed():
|
||||
OS.shell_open(\"https://gitlab.com/betalars/frame-of-mind/-/wikis/home\")
|
||||
"
|
||||
|
||||
[sub_resource type="GDScript" id="GDScript_m3ofj"]
|
||||
script/source = "extends Button
|
||||
|
||||
|
||||
func _pressed():
|
||||
OS.shell_open(\"https://gitlab.com/betalars/frame-of-mind/-/blob/main/design/contributions.md\")
|
||||
"
|
||||
|
||||
[node name="ending" type="Panel"]
|
||||
anchors_preset = 15
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
grow_horizontal = 2
|
||||
grow_vertical = 2
|
||||
|
||||
[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_picwm")
|
||||
expand_mode = 2
|
||||
stretch_mode = 4
|
||||
|
||||
[node name="Panel" type="PanelContainer" parent="childhood/PanelContainer/StartFrame"]
|
||||
show_behind_parent = true
|
||||
layout_mode = 2
|
||||
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="HSeparator" type="HSeparator" parent="childhood/PanelContainer/VBoxContainer"]
|
||||
custom_minimum_size = Vector2(0, 20)
|
||||
layout_mode = 2
|
||||
|
||||
[node name="Label" type="Label" parent="childhood/PanelContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
theme_type_variation = &"HeaderLarge"
|
||||
text = "Thanks for Playing"
|
||||
horizontal_alignment = 1
|
||||
|
||||
[node name="Label2" type="Label" parent="childhood/PanelContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
text = "By testing the alpha, you help us make the game as good as it can get.
|
||||
|
||||
Frame of mind is
|
||||
made by betalars
|
||||
|
||||
They were suppored by:
|
||||
Adrian Schmid and tilcreator - programming
|
||||
Jas Arianna - voice acting
|
||||
STTLE - OST
|
||||
|
||||
Frame of Mind was created in godot 4.
|
||||
|
||||
Special thanks to:
|
||||
Jenny, nek0, map-c, Svenja, caesey, Milo, Francis, Sandro, Christoph
|
||||
and to the contributers of blender, godot and inkscape.
|
||||
|
||||
frame of mind is published by purple sloth games."
|
||||
horizontal_alignment = 1
|
||||
autowrap_mode = 3
|
||||
visible_characters_behavior = 1
|
||||
|
||||
[node name="Button" type="Button" parent="childhood/PanelContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 4
|
||||
theme_override_fonts/font = ExtResource("2_jb5y5")
|
||||
theme_override_font_sizes/font_size = 50
|
||||
text = "Quit and fill out the Survey"
|
||||
script = SubResource("GDScript_d32iw")
|
||||
|
||||
[node name="Label3" type="Label" parent="childhood/PanelContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 3
|
||||
text = "on cryptpad.fr"
|
||||
horizontal_alignment = 1
|
||||
autowrap_mode = 3
|
||||
visible_characters_behavior = 1
|
||||
|
||||
[node name="Button2" type="Button" parent="childhood/PanelContainer/VBoxContainer"]
|
||||
layout_mode = 2
|
||||
size_flags_horizontal = 4
|
||||
text = "These Creative Commons projects made frame of mind possible."
|
||||
script = SubResource("GDScript_m3ofj")
|
||||
|
||||
[node name="StartBottom" type="TextureRect" parent="childhood/PanelContainer/VBoxContainer"]
|
||||
custom_minimum_size = Vector2(0, 64)
|
||||
layout_mode = 2
|
||||
size_flags_vertical = 8
|
||||
texture = ExtResource("3_oob40")
|
||||
expand_mode = 2
|
||||
stretch_mode = 4
|
||||
Loading…
Reference in New Issue