-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTypingGame.tscn
49 lines (43 loc) · 1.2 KB
/
TypingGame.tscn
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
[gd_scene load_steps=5 format=2]
[ext_resource path="res://TypingGame.gd" type="Script" id=1]
[ext_resource path="res://minigame_background.gdshader" type="Shader" id=2]
[ext_resource path="res://assets/english.png" type="Texture" id=3]
[sub_resource type="ShaderMaterial" id=1]
shader = ExtResource( 2 )
shader_param/radius = 1.0
[node name="TypingGame" type="Control"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
correct_char_color = Color( 0.403922, 1, 0.0705882, 1 )
untyped_color = Color( 0.956863, 1, 0.898039, 1 )
[node name="TypedWords" type="RichTextLabel" parent="."]
margin_left = 10.0
margin_right = 1024.0
margin_bottom = 600.0
bbcode_enabled = true
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Words" type="RichTextLabel" parent="."]
margin_left = 10.0
margin_right = 1024.0
margin_bottom = 600.0
bbcode_enabled = true
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Background" type="TextureRect" parent="."]
modulate = Color( 1, 1, 1, 0.588235 )
show_behind_parent = true
material = SubResource( 1 )
anchor_right = 1.0
anchor_bottom = 1.0
texture = ExtResource( 3 )
expand = true
__meta__ = {
"_edit_use_anchors_": false
}