1[gd_scene load_steps=2 format=1]
2
3[ext_resource path="res://grid.gd" type="Script" id=1]
4
5[node name="Grid" type="Control"]
6
7focus/ignore_mouse = false
8focus/stop_mouse = true
9size_flags/horizontal = 2
10size_flags/vertical = 2
11margin/left = 0.0
12margin/top = 0.0
13margin/right = 40.0
14margin/bottom = 40.0
15script/script = ExtResource( 1 )
16
17[node name="timer" type="Timer" parent="."]
18
19process_mode = 1
20wait_time = 1.0
21one_shot = false
22autostart = false
23
24[node name="gameover" type="Label" parent="."]
25
26anchor/right = 1
27anchor/bottom = 1
28focus/ignore_mouse = true
29focus/stop_mouse = true
30size_flags/horizontal = 2
31margin/left = 0.0
32margin/top = 0.0
33margin/right = 0.0
34margin/bottom = 0.0
35custom_colors/font_color = Color( 1, 1, 1, 1 )
36custom_colors/font_color_shadow = Color( 0, 0, 0, 1 )
37custom_constants/shadow_offset_x = 1
38custom_constants/shadow_offset_y = 1
39align = 1
40valign = 1
41percent_visible = 1.0
42lines_skipped = 0
43max_lines_visible = -1
44
45[connection signal="timeout" from="timer" to="." method="piece_move_down"]
46
47
48