Boss phases

Anonymous
csharp
01/28/2025 1:49 PM
300 B
14
Indexable
void Update()
{
    if (bossHealth < 50)
    {
        EnterPhaseTwo();
    }
}

void EnterPhaseTwo()
{
    currentState = BossState.Special;
    // Change behavior, increase speed, new attack patterns, etc.
}
Editor is loading...
Leave a Comment