blob: 2d8722516441de62e22b3e29aa37f383667b50ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
[gd_scene load_steps=4 format=2]
[ext_resource path="res://scenes/levels/typeracer.gd" type="Script" id=1]
[ext_resource path="res://textures/colors/light_blue.png" type="Texture" id=2]
[ext_resource path="res://components/button.tscn" type="PackedScene" id=3]
[node name="Node2D" type="Node2D"]
script = ExtResource( 1 )
[node name="Sprite" type="Sprite" parent="."]
position = Vector2( -0.109284, 2.36197 )
scale = Vector2( 950.266, 537.001 )
texture = ExtResource( 2 )
[node name="TextEdit" type="TextEdit" parent="."]
margin_left = -301.579
margin_top = -0.914124
margin_right = 305.421
margin_bottom = 225.086
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Label" type="Label" parent="."]
margin_left = -302.51
margin_top = -228.588
margin_right = 315.49
margin_bottom = -21.5884
text = "Hey Matt,
yes I'm on my way as soon as possible.
See you,
Tom"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="TimeLabel" type="Label" parent="."]
margin_left = -463.0
margin_top = -255.0
margin_right = -291.0
margin_bottom = -209.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Button" parent="." instance=ExtResource( 3 )]
position = Vector2( 387.398, 195.318 )
text = "Send"
[node name="Incorrect" type="Label" parent="."]
visible = false
margin_left = -308.457
margin_top = 231.335
margin_right = 317.543
margin_bottom = 266.335
text = "The text you wrote is not exactely correct"
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="on_click" from="Button" to="." method="_on_Button_on_click"]
|