final tutorial setup and UI fix
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 19s
Create tag and build when new code gets to main / Export (push) Successful in 6m9s

This commit is contained in:
2025-11-06 09:29:05 +01:00
parent 29d9f44142
commit 1ea3945cf6
5 changed files with 163 additions and 38 deletions

View File

@@ -601,7 +601,7 @@ public partial class PlayerController : CharacterBody3D
public void PowerRecharging(float delta)
{
var progress = (float) (_powerCooldownTimer.TimeLeft / _powerCooldownTimer.WaitTime);
PowerCooldownIndicator.SetSize(new Vector2(100 * progress, 10));
PowerCooldownIndicator.SetCustomMinimumSize(new Vector2(100 * progress, 10));
}
public void StartPowerCooldown()
{