123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- [gd_scene load_steps=10 format=2]
- [ext_resource path="res://LoonyLips.gd" type="Script" id=1]
- [ext_resource path="res://gfx/blackboard.jpg" type="Texture" id=2]
- [ext_resource path="res://gfx/Feltpen.ttf" type="DynamicFontData" id=3]
- [ext_resource path="res://gfx/blue_button12.png" type="Texture" id=4]
- [ext_resource path="res://gfx/blue_button11.png" type="Texture" id=5]
- [ext_resource path="res://Story.gd" type="Script" id=6]
- [sub_resource type="DynamicFont" id=1]
- size = 40
- font_data = ExtResource( 3 )
- [sub_resource type="DynamicFont" id=2]
- size = 40
- font_data = ExtResource( 3 )
- [sub_resource type="DynamicFont" id=3]
- size = 40
- font_data = ExtResource( 3 )
- [node name="LoonyLips" type="Control"]
- anchor_right = 1.0
- anchor_bottom = 1.0
- script = ExtResource( 1 )
- __meta__ = {
- "_edit_use_anchors_": false
- }
- [node name="Bg" type="TextureRect" parent="."]
- anchor_right = 1.0
- anchor_bottom = 1.0
- texture = ExtResource( 2 )
- expand = true
- __meta__ = {
- "_edit_use_anchors_": false
- }
- [node name="VBoxContainer" type="VBoxContainer" parent="."]
- anchor_right = 1.0
- anchor_bottom = 1.0
- margin_left = 24.0
- margin_top = 24.0
- margin_right = -24.0
- margin_bottom = -24.0
- alignment = 2
- __meta__ = {
- "_edit_use_anchors_": false
- }
- [node name="DisplayText" type="Label" parent="VBoxContainer"]
- margin_right = 1232.0
- margin_bottom = 600.0
- rect_min_size = Vector2( 0, 600 )
- custom_fonts/font = SubResource( 1 )
- text = "Placeholder Text"
- autowrap = true
- __meta__ = {
- "_edit_use_anchors_": false
- }
- [node name="HBoxContainer" type="HBoxContainer" parent="VBoxContainer"]
- margin_top = 604.0
- margin_right = 1232.0
- margin_bottom = 677.0
- custom_constants/separation = 12
- alignment = 2
- [node name="PlayerText" type="LineEdit" parent="VBoxContainer/HBoxContainer"]
- margin_right = 1077.0
- margin_bottom = 73.0
- size_flags_horizontal = 3
- custom_fonts/font = SubResource( 2 )
- __meta__ = {
- "_edit_use_anchors_": false
- }
- [node name="TextureButton" type="TextureButton" parent="VBoxContainer/HBoxContainer"]
- margin_left = 1089.0
- margin_right = 1162.0
- margin_bottom = 73.0
- rect_min_size = Vector2( 73, 73 )
- texture_normal = ExtResource( 5 )
- texture_pressed = ExtResource( 4 )
- expand = true
- __meta__ = {
- "_edit_use_anchors_": false
- }
- [node name="Label" type="Label" parent="VBoxContainer/HBoxContainer"]
- margin_left = 1174.0
- margin_top = 5.0
- margin_right = 1232.0
- margin_bottom = 68.0
- custom_fonts/font = SubResource( 3 )
- text = "Ok"
- [node name="StoryBook" type="Node" parent="."]
- [node name="Story0" type="Node" parent="StoryBook"]
- script = ExtResource( 6 )
- prompts = PoolStringArray( "a name", "an adjective", "a noun" )
- story = "Once upon a time there was a princess called %s, that princess was very %s. I am sorry, this is my first %s project :''"
- [node name="Story1" type="Node" parent="StoryBook"]
- script = ExtResource( 6 )
- prompts = PoolStringArray( "a name", "another name", "an adjective", "another adjective" )
- story = "Once upon a time, there was a person called %s, that person had a dog called %s, it was very %s and %s"
- [node name="Story2" type="Node" parent="StoryBook"]
- script = ExtResource( 6 )
- prompts = PoolStringArray( "a name", "a thing", "a feeling" )
- story = "Once upon a time, %s ate a %s and felt very %s"
- [connection signal="text_entered" from="VBoxContainer/HBoxContainer/PlayerText" to="." method="_on_PlayerText_text_entered"]
- [connection signal="pressed" from="VBoxContainer/HBoxContainer/TextureButton" to="." method="_on_TextureButton2_pressed"]
|