-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tank.tscn
64 lines (56 loc) · 1.46 KB
/
Tank.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
[gd_scene load_steps=3 format=2]
[ext_resource path="res://Tank.cs" type="Script" id=1]
[sub_resource type="RectangleShape2D" id=1]
[node name="Tank" type="KinematicBody2D"]
input_pickable = true
script = ExtResource( 1 )
[node name="HitBox" type="CollisionShape2D" parent="."]
shape = SubResource( 1 )
[node name="TankName" type="RichTextLabel" parent="."]
margin_right = 188.0
margin_bottom = 48.0
text = "#####
WaterTankName
#####"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="TankInfo" type="RichTextLabel" parent="."]
visible = false
margin_left = -1.0
margin_right = 239.0
margin_bottom = 46.0
bbcode_enabled = true
bbcode_text = "#####
Place Holder
#####"
text = "#####
Place Holder
#####"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Edit" type="Button" parent="."]
visible = false
margin_left = 1.0
margin_top = 51.0
margin_right = 70.0
margin_bottom = 71.0
text = "Edit Data"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Hide Info" type="Button" parent="."]
visible = false
margin_left = 78.1272
margin_top = 51.0
margin_right = 149.127
margin_bottom = 71.0
text = "Hide Info"
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="mouse_entered" from="." to="." method="_on_Tank_mouse_entered"]
[connection signal="mouse_exited" from="." to="." method="_on_Tank_mouse_exited"]
[connection signal="pressed" from="Edit" to="." method="_on_Edit_pressed"]
[connection signal="pressed" from="Hide Info" to="." method="_on_Hide_Info_pressed"]