123456789101112131415161718192021222324252627282930 |
- [gd_scene load_steps=4 format=3 uid="uid://bwgsy2pemskmt"]
- [ext_resource type="Script" path="res://scenes/HUD/hud.gd" id="1_kvr8c"]
- [ext_resource type="Texture2D" uid="uid://ci0sb81m8ukuv" path="res://assets/buttons/back.svg" id="2_s53gj"]
- [ext_resource type="Texture2D" uid="uid://v7hnk8ged2ww" path="res://assets/buttons/restart.svg" id="3_5aacj"]
- [node name="HUD" type="CanvasLayer"]
- script = ExtResource("1_kvr8c")
- [node name="ReturnButton" type="TextureButton" parent="."]
- offset_right = 64.0
- offset_bottom = 64.0
- texture_normal = ExtResource("2_s53gj")
- ignore_texture_size = true
- stretch_mode = 0
- [node name="ReloadButton" type="TextureButton" parent="."]
- anchors_preset = 1
- anchor_left = 1.0
- anchor_right = 1.0
- offset_left = -64.0
- offset_bottom = 64.0
- grow_horizontal = 0
- texture_normal = ExtResource("3_5aacj")
- ignore_texture_size = true
- stretch_mode = 0
- [connection signal="pressed" from="ReturnButton" to="." method="_on_return_button_pressed"]
- [connection signal="pressed" from="ReloadButton" to="." method="_on_reload_button_pressed"]
|