Initial project sync

This commit is contained in:
wxm
2026-07-06 22:55:14 -07:00
commit 8cca00d0da
1066 changed files with 58585 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
[gd_scene load_steps=4 format=3]
[ext_resource type="Script" path="res://scenes/ui/energy_bar.gd" id="1"]
[ext_resource type="Texture2D" path="res://assets/ui/panels/player_blue_ui.png" id="2_blue_fill"]
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_energy_bg"]
bg_color = Color(0.02, 0.04, 0.07, 0.55)
[sub_resource type="StyleBoxTexture" id="StyleBoxTexture_energy_fill"]
texture = ExtResource("2_blue_fill")
[node name="EnergyBar" type="ProgressBar"]
custom_minimum_size = Vector2(128, 15)
theme_override_styles/background = SubResource("StyleBoxFlat_energy_bg")
theme_override_styles/fill = SubResource("StyleBoxTexture_energy_fill")
max_value = 100.0
value = 100.0
show_percentage = false
script = ExtResource("1")