summaryrefslogtreecommitdiff
path: root/UI/HUD/CancelButton.tscn
blob: 27441cba60fa03a40ad7e43ffabbc035d970de71 (plain)
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
[gd_scene load_steps=4 format=2]

[ext_resource path="res://UI/HUD/CancelButton.gd" type="Script" id=1]

[sub_resource type="StyleBoxFlat" id=2]
bg_color = Color( 0, 0, 0, 1 )

[sub_resource type="StyleBoxFlat" id=1]
bg_color = Color( 0.6, 0.6, 0.6, 0 )
border_width_left = 1
border_width_top = 1
border_width_right = 1
border_width_bottom = 1
border_color = Color( 0, 0, 0, 1 )

[node name="CancelButton" type="Button"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_top = 576.0
margin_right = -960.0
custom_styles/hover = SubResource( 2 )
custom_styles/normal = SubResource( 1 )
text = "Cancel"
script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[connection signal="pressed" from="." to="." method="_on_CancelButton_pressed"]