Files
MovementTests/components/health/CHealthbar.cs
Minimata ddf1bd019b
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 42s
Create tag and build when new code gets to main / Test (push) Successful in 6m13s
Create tag and build when new code gets to main / Export (push) Successful in 7m5s
better healthbars and one for the player as well
2026-01-26 18:09:29 +01:00

15 lines
275 B
C#

using Godot;
using System;
[GlobalClass]
public partial class CHealthbar : Sprite3D
{
private Healthbar _healthbar;
public Healthbar Healthbar => _healthbar;
public override void _Ready()
{
_healthbar = GetNode<Healthbar>("%Healthbar");
}
}