diff options
author | bd <bdunahu@operationnull.com> | 2025-05-23 17:21:21 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-05-23 17:21:21 -0400 |
commit | 6d166db85ec2518b3219240f7cbf26221eec1f76 (patch) | |
tree | b37d47ff7e65cc9c3e4361f322c26e232c93b940 /scenes/ui.tscn | |
parent | c278c21c5019b2e82651fec10b819c3b29b8ff7d (diff) |
Basic UI for tower display
Diffstat (limited to 'scenes/ui.tscn')
-rw-r--r-- | scenes/ui.tscn | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/scenes/ui.tscn b/scenes/ui.tscn index bd8f3ff..cb0c91f 100644 --- a/scenes/ui.tscn +++ b/scenes/ui.tscn @@ -1,7 +1,8 @@ -[gd_scene load_steps=4 format=3 uid="uid://dycgp3yept14k"] +[gd_scene load_steps=5 format=3 uid="uid://dycgp3yept14k"] [ext_resource type="Script" uid="uid://dtj2opmwvh4y1" path="res://scripts/life.gd" id="1_suays"] [ext_resource type="Script" uid="uid://b8urrbmynk327" path="res://scripts/morale.gd" id="1_yb1mt"] +[ext_resource type="PackedScene" uid="uid://edgs77gubcl8" path="res://scenes/ui_panel.tscn" id="3_yev5y"] [sub_resource type="StyleBoxFlat" id="StyleBoxFlat_nt14h"] bg_color = Color(0, 0.0117647, 0.552941, 1) @@ -37,3 +38,27 @@ layout_mode = 2 theme_override_font_sizes/font_size = 8 text = "Life: 20" script = ExtResource("1_suays") + +[node name="Warlock" parent="MarginContainer/HBoxContainer" instance=ExtResource("3_yev5y")] +layout_mode = 2 +texture_atlas_coords = Vector2(30, 1) +object_name = "Warlock" +cost = "10" + +[node name="Wyvern" parent="MarginContainer/HBoxContainer" instance=ExtResource("3_yev5y")] +layout_mode = 2 +texture_atlas_coords = Vector2(24, 10) +object_name = "Wyvern" +cost = "15" + +[node name="Werewolf" parent="MarginContainer/HBoxContainer" instance=ExtResource("3_yev5y")] +layout_mode = 2 +texture_atlas_coords = Vector2(26, 11) +object_name = "Werewolf" +cost = "-" + +[node name="Wellspring" parent="MarginContainer/HBoxContainer" instance=ExtResource("3_yev5y")] +layout_mode = 2 +texture_atlas_coords = Vector2(38, 11) +object_name = "Wellspring" +cost = "-" |