more ui tweaks and started on enemy health bar

This commit is contained in:
derek
2025-03-19 17:00:08 -05:00
parent 573a20cfa8
commit b85014c48b
13 changed files with 87 additions and 1 deletions

7
scripts/3D Health Bar.gd Normal file
View File

@@ -0,0 +1,7 @@
extends Control
func _process(delta: float) -> void:
queue_redraw()
func _draw() -> void:
draw_circle(Vector2.ZERO,0,Color(1,1,1,1),true,10,true)