-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.tscn
37 lines (31 loc) · 1023 Bytes
/
Main.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
[gd_scene load_steps=5 format=2]
[ext_resource path="res://Main.cs" type="Script" id=1]
[ext_resource path="res://Grid.cs" type="Script" id=2]
[ext_resource path="res://Resources/JetBrainsMono-Regular.ttf" type="DynamicFontData" id=3]
[sub_resource type="DynamicFont" id=1]
size = 4
outline_color = Color( 1, 0, 0, 1 )
font_data = ExtResource( 3 )
[node name="Main" type="Node2D"]
script = ExtResource( 1 )
[node name="Grid" type="GridContainer" parent="."]
anchor_right = 1.0
anchor_bottom = 1.0
columns = 30
script = ExtResource( 2 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Timer" type="Timer" parent="."]
autostart = true
[node name="Label" type="Label" parent="."]
margin_right = 40.0
margin_bottom = 14.0
custom_fonts/font = SubResource( 1 )
custom_colors/font_color = Color( 1, 0.00392157, 0.00392157, 1 )
custom_colors/font_outline_modulate = Color( 0, 0, 0, 1 )
text = "Epoche: 0"
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="timeout" from="Timer" to="." method="OnEpochEnd"]