-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtile.tscn
110 lines (75 loc) · 2.87 KB
/
tile.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[gd_scene load_steps=17 format=1]
[ext_resource path="res://tile.gd" type="Script" id=1]
[ext_resource path="res://images/32x32/closedtile.png" type="Texture" id=2]
[ext_resource path="res://images/32x32/flag.png" type="Texture" id=3]
[ext_resource path="res://images/32x32/question.png" type="Texture" id=4]
[ext_resource path="res://images/32x32/opentile.png" type="Texture" id=5]
[ext_resource path="res://images/32x32/red.png" type="Texture" id=6]
[ext_resource path="res://images/32x32/bomb.png" type="Texture" id=7]
[ext_resource path="res://images/32x32/misflagged.png" type="Texture" id=8]
[ext_resource path="res://images/32x32/1.png" type="Texture" id=9]
[ext_resource path="res://images/32x32/2.png" type="Texture" id=10]
[ext_resource path="res://images/32x32/3.png" type="Texture" id=11]
[ext_resource path="res://images/32x32/4.png" type="Texture" id=12]
[ext_resource path="res://images/32x32/5.png" type="Texture" id=13]
[ext_resource path="res://images/32x32/6.png" type="Texture" id=14]
[ext_resource path="res://images/32x32/7.png" type="Texture" id=15]
[ext_resource path="res://images/32x32/8.png" type="Texture" id=16]
[node name="tile" type="Control"]
margin/right = 32.0
margin/bottom = 32.0
focus/ignore_mouse = false
focus/stop_mouse = true
size_flags/horizontal = 2
size_flags/vertical = 2
script/script = ExtResource( 1 )
__meta__ = { "__editor_plugin_screen__":"Script" }
[node name="closed" type="Sprite" parent="."]
texture = ExtResource( 2 )
centered = false
[node name="flag" type="Sprite" parent="closed"]
visibility/visible = false
texture = ExtResource( 3 )
centered = false
[node name="question" type="Sprite" parent="closed"]
visibility/visible = false
texture = ExtResource( 4 )
centered = false
[node name="opened" type="Sprite" parent="."]
visibility/visible = false
texture = ExtResource( 5 )
centered = false
[node name="exploded" type="Sprite" parent="opened"]
texture = ExtResource( 6 )
centered = false
[node name="bomb" type="Sprite" parent="opened"]
texture = ExtResource( 7 )
centered = false
[node name="misflagged" type="Sprite" parent="opened"]
texture = ExtResource( 8 )
centered = false
[node name="1" type="Sprite" parent="opened"]
texture = ExtResource( 9 )
centered = false
[node name="2" type="Sprite" parent="opened"]
texture = ExtResource( 10 )
centered = false
[node name="3" type="Sprite" parent="opened"]
texture = ExtResource( 11 )
centered = false
[node name="4" type="Sprite" parent="opened"]
texture = ExtResource( 12 )
centered = false
[node name="5" type="Sprite" parent="opened"]
texture = ExtResource( 13 )
centered = false
[node name="6" type="Sprite" parent="opened"]
texture = ExtResource( 14 )
centered = false
region_rect = Rect2( 184, 18, 14, 19 )
[node name="7" type="Sprite" parent="opened"]
texture = ExtResource( 15 )
centered = false
[node name="8" type="Sprite" parent="opened"]
texture = ExtResource( 16 )
centered = false