blob: e069083264677d0fa2366f3c4d83c396ea82f7fb (
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
|
[gd_scene load_steps=4 format=3 uid="uid://c1t4wotcq114x"]
[ext_resource type="Script" path="res://UI/HUD/CancelButton.gd" id="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)
[sub_resource type="StyleBoxFlat" id="2"]
bg_color = Color(0, 0, 0, 1)
[node name="CancelButton" type="Button"]
offset_right = 159.0
offset_bottom = 62.0
theme_override_styles/normal = SubResource("1")
theme_override_styles/hover = SubResource("2")
text = "Cancel"
script = ExtResource("1")
[connection signal="pressed" from="." to="." method="_on_CancelButton_pressed"]
|