Add Active Buffs management and UI integration

This commit is contained in:
2025-08-23 04:20:42 +02:00
parent 32c75c6fe8
commit 5719c3f920
16 changed files with 217 additions and 51 deletions

View File

@@ -1,4 +1,5 @@
using System;
using ParasiticGod.Scripts.Singletons;
namespace ParasiticGod.Scripts.Core;
@@ -23,6 +24,7 @@ public class GameLogic
buff.Duration -= delta;
if (buff.Duration <= 0)
{
GameBus.Instance.NotifyBuffRemoved(buff);
state.ActiveBuffs.RemoveAt(i);
}
}